1 条题解

  • 0
    @ 2024-7-29 11:15:53

    #include<bits/stdc++.h> using namespace std; int main(){ int a,cnt=1; cin>>a; for(int i=0;i<=a;i++){ for(int j=0;j<=a;j++){ if(i*j==a) cnt++; } } cout<<cnt/2; return 0; }

    • 1

    信息

    ID
    2200
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    42
    已通过
    20
    上传者