feat: use new filetype structure

This commit is contained in:
Barrett Ruth 2025-09-15 08:23:56 -05:00
parent 0c6ed73dde
commit 259ffcaab1
5 changed files with 22 additions and 2 deletions

View file

@ -27,8 +27,8 @@ function M.create_context(contest, contest_id, problem_id, config)
problem_id = problem_id,
source_file = source_file,
binary_file = ("build/%s.run"):format(base_name),
input_file = ("io/%s.in"):format(base_name),
output_file = ("io/%s.out"):format(base_name),
input_file = ("io/%s.cpin"):format(base_name),
output_file = ("io/%s.cpout"):format(base_name),
expected_file = ("io/%s.expected"):format(base_name),
problem_name = base_name,
}