记录编号 | 110638 | 评测结果 | AAAAA | ||
---|---|---|---|---|---|
题目名称 | 1299.BPlusA | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.001 s | ||
提交时间 | 2014-07-12 09:45:41 | 内存使用 | 0.25 MiB | ||
#include <fstream> using namespace std; ifstream in("bplusa.in"); ofstream out("bplusa.out"); int main() { int n; in>>n; out<<0<<' '<<n; return 0; }