0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-21 10:25:24 +00:00
OI-codes/LibreOJ/4/data/checker.py

20 lines
292 B
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)