py对拍器

今天在验题的时候,与其他验题人输出不合,偶感,特此写一个对拍器

可以用于 c/cpp 对拍

请先去除代码中的 freopen,并编译成 exe

使用时只需要修改运行目录,和验题人标识符,即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os
os.chdir('E:\problems\div1\T1')
arr=os.listdir()
input_files=[file for file in arr if file.endswith('.in')]
l=len(input_files)

names=['lzz','ringoer']

for name in names:
for i in range(l):
os.system(name+'.exe <'+input_files[i]+' >'+str(i+1)+'.'+name+'.out')

arr=os.listdir()
output_files=[file for file in arr if file.endswith('.out')]

ans=[[open(file,mode='r',encoding='utf-8').read() for file in output_files if name in file] for name in names]

for i in range(l):
flag=True
for j in range(1,len(names)):
if ans[0][i] != ans[j][i]:
flag=False
break
if flag:
print(flag)
else:
print(i)
for j in range(0,len(names)):
print(names[j]+'='+ans[j][i])

高度解耦,非常美观

--It's the end.Thanks for your read.--