对拍程序
方便\(\text{WA}\)的时候对拍的程序。
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int t=1;;t++){
system("data > in.txt");
system("wa < in.txt > out.txt");
system("ac < in.txt > ans.txt");
if(!system("fc out.txt ans.txt"))
printf("%d:AC!\n",t);
else{
printf("%d:WA!\n",t);
break;
}
}
return 0;
}
注:在\(\text{Linux}\)下只用吧fc
改成diff
即可。
本文来自博客园,作者:maniubi,转载请注明原文链接:https://www.cnblogs.com/maniubi/p/16670856.html,orz