1 条题解

  • 0
    @ 2025-12-7 15:29:36
    #include<bits/stdc++.h>
    using namespace std;
    int a,s;
    int main(){
        cin>>a;
        for(int i=1;i*i<=a;i++){
            if((a%i)==0){
                s+=1;
            }
        }
        cout<<s;
        return 0;
    }
    

    信息

    ID
    9132
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    6
    已通过
    6
    上传者