QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#522459 | #9136. Exponent Calculator | berarchegas# | Compile Error | / | / | C++20 | 198b | 2024-08-16 23:30:39 | 2024-08-16 23:30:40 |
Judging History
answer
print(24)
print("$2 = $0 + 0")
print("$1 = $0 + 0")
for i in range(2,9):
print("$1 = $1 * $2")
print("$1 = $1 * %.10lf" % (1/i))
print("$0 = $1 + $0")
print("$0 = $0 + 1.0")
Details
answer.code:1:6: error: expected constructor, destructor, or type conversion before ‘(’ token 1 | print(24) | ^