fix(remote_judger/codeforces): memory of a test
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2023-01-29 08:27:56 +08:00
parent 8f0c206cd7
commit 176caf830d
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -351,7 +351,7 @@ export default class CodeforcesProvider implements IBasicProvider {
test_info += `<test num="${i}" info="${info_text}" time="${ test_info += `<test num="${i}" info="${info_text}" time="${
body[`timeConsumed#${i}`] body[`timeConsumed#${i}`]
}" memory="${body[`memoryConsumed#${i}`]}">`; }" memory="${+body[`memoryConsumed#${i}`] / 1024}">`;
const parse = (id: string) => crlf(body[id], LF); const parse = (id: string) => crlf(body[id], LF);