0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:25:24 +00:00
OI-codes/LibreOJ/4/data/checker.py
2022-09-17 16:23:49 +08:00

20 lines
292 B (Stored with Git LFS)
Python

import sys
usr = open("user_out", "r")
code = open("code", "r")
code = code.read()
code = code.replace('\r\n', '\n')
if len(code) < 10:
print(0)
sys.exit(0)
outcode = usr.read()
outcode = outcode.replace('\r\n', '\n')
if outcode == code:
print(100)
else:
print(0)