记录编号 | 232232 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 01进制数 | 最终得分 | 100 | ||
用户昵称 | liu_runda | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.029 s | ||
提交时间 | 2016-02-29 12:12:05 | 内存使用 | 0.29 MiB | ||
#include<cstdio> int main(){ freopen("binacy.in","r",stdin); freopen("binacy.out","w",stdout); int n;scanf("%d",&n); int a=1,b=0; for(int i=0;i<n;++i){ a+=b;b=a-b; a%=15746; b%=15746; } printf("%d",a); fclose(stdin);fclose(stdout); return 0; }