QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#557074#9136. Exponent CalculatorbeamishboysWA 6ms10640kbPython3119b2024-09-11 02:10:062024-09-11 02:10:07

Judging History

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

  • [2024-09-11 02:10:07]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:10640kb
  • [2024-09-11 02:10:06]
  • 提交

answer

n = 20
s = [
    f"$2 = $1 * {1.0/2**n}",
    "$0 = 1 + $2"
] + ["$0 = $0 * $0"] * n

print(len(s), *s, sep='\n')

詳細信息

Test #1:

score: 0
Wrong Answer
time: 6ms
memory: 10640kb

input:

input

output:

22
$2 = $1 * 9.5367431640625e-07
$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
$0 = $0 * $0
$0 = $0 * $0
$0 = $0 * $0
$0 = $0 * $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=2.06076e-09,error=0.000190719