比赛 | EYOI暨SBOI暑假快乐赛6th | 评测结果 | WWWWWWTTTT |
---|---|---|---|
题目名称 | 秒速五厘米 | 最终得分 | 0 |
用户昵称 | 䱖虁職 | 运行时间 | 4.498 s |
代码语言 | C++ | 内存使用 | 4.02 MiB |
提交时间 | 2022-06-30 10:50:23 | ||
- #include<bits/stdc++.h>
- using namespace std;
- const int mod=1e9+7;
- int n,ans=0;
- int jc(int a)
- {
- int ans=1;
- for(int i=2;i<=a;i++)ans*=i;
- return ans;
- }
- int main(){
- freopen("sakuras.in","r",stdin);
- freopen("sakuras.out","w",stdout);
- scanf("%d",&n);
- for(int x=1;x<=100;x++)
- for(int y=1;y<=100;y++)
- if(jc(n)*(x+y)==x*y)
- ans++;
- printf("%d\n",ans);
- return 0;
- }