求大佬帮我看看错哪了
166798809782010000000000分解之后是2^10 * 3^10 * 5^10 * 7^10
所以166798809782010000000000整除63!
然后1个点AC,另一个WA

#include<iostream>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    if(n >= 63)cout << n-62;
    else cout << 0;
    return 0;
}

0 条评论

目前还没有评论...

信息

ID
1198
难度
9
分类
(无)
标签
递交数
2
已通过
1
通过率
50%
上传者