记录编号 | 36725 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 数字填充 | 最终得分 | 100 | ||
用户昵称 | Launcher | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.001 s | ||
提交时间 | 2012-03-17 13:21:33 | 内存使用 | 0.27 MiB | ||
#include<fstream> using namespace std; ifstream fin("coupons.in"); ofstream fout("coupons.out"); int main() { int n,m; fin>>n; m=n/2; n=n*n; fout<<m+n+1<<endl; return 0; }