QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#557072#9136. Exponent CalculatorbeamishboysWA 13ms10504kbPython3118b2024-09-11 02:08:542024-09-11 02:08:54

Judging History

你现在查看的是最新测评结果

  • [2024-09-11 02:08:54]
  • 评测
  • 测评结果:WA
  • 用时:13ms
  • 内存:10504kb
  • [2024-09-11 02:08:54]
  • 提交

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