记录编号 | 36712 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 数字填充 | 最终得分 | 100 | ||
用户昵称 | TBK | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.003 s | ||
提交时间 | 2012-03-17 10:11:42 | 内存使用 | 0.27 MiB | ||
#include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <string> #include <iomanip> using namespace std; int a; int main(void) { freopen ("coupons.in","r",stdin); freopen ("coupons.out","w",stdout); scanf("%d",&a); printf("%d",a/2+a*a+1); fclose(stdin); fclose(stdout); return 0; }