【对拍】
2021-03-29 15:44:00 # ACM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <cstdlib>
#include <cstdio>
#include <ctime>
int cnt;
int main(){
while(1){
system("random.exe>data.in");
system("stand.exe<data.in>data.ans");
system("test.exe<data.in>data.out");
if(system("fc data.out data.ans")){
puts("WA");
return 0;
}
else printf("%d\n",cnt++);
}
}
Prev
2021-03-29 15:44:00 # ACM
Next