记录编号 |
453764 |
评测结果 |
AAAAAAAAAA |
题目名称 |
书的复制 |
最终得分 |
100 |
用户昵称 |
真的菜 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2017-09-23 11:04:58 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#define ll long long
using namespace std;
inline int read(){
int x=0,f=1;char c=getchar();
while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();}
while(c>='0'&&c<='9'){x=(x<<1)+(x<<3)+c-'0';c=getchar();}
return x*f;
}
int main(){
freopen("books.in","r",stdin);
freopen("books.out","w",stdout);
//cout<<978969231<<endl;
return 0;
}