[fix] wrong file name

Signed-off-by: zhangtianli2006 <zhangtianli2006@163.com>
This commit is contained in:
zhangtianli2006 2021-08-23 18:19:13 +08:00
parent fe2d49fa2f
commit 257be6f74c

View File

@ -88,7 +88,7 @@ for i in range(0, sub_tasks):
for j in range(0, task_cnt[i]): for j in range(0, task_cnt[i]):
tot_id += 1 tot_id += 1
exe_path = "./std_{}".format(name) exe_path = "./run_{}".format(name)
in_path = "{}.{}.{}.in".format(name, i + 1, j + 1) in_path = "{}.{}.{}.in".format(name, i + 1, j + 1)
out_path = ".output.tmp" out_path = ".output.tmp"
ans_path = "{}.{}.{}.out".format(name, i + 1, j + 1) ans_path = "{}.{}.{}.out".format(name, i + 1, j + 1)