QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#557072 | #9136. Exponent Calculator | beamishboys | WA | 13ms | 10504kb | Python3 | 118b | 2024-09-11 02:08:54 | 2024-09-11 02:08:54 |
Judging History
answer
n = 8
s = [
f"$2 = $1 * {1.0/2**n}",
"$0 = 1 + $2"
] + ["$0 = $0 * $0"] * n
print(len(s), *s, sep='\n')
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 13ms
memory: 10504kb
input:
input
output:
10 $2 = $1 * 0.00390625 $0 = 1 + $2 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0
result:
wrong answer x=-20,jury=2.06115e-09,participant=9.03736e-10,error=0.561539