QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#557073#9136. Exponent CalculatorbeamishboysWA 15ms10544kbPython3119b2024-09-11 02:09:412024-09-11 02:09:42

Judging History

This is the latest submission verdict.

  • [2024-09-11 02:09:42]
  • Judged
  • Verdict: WA
  • Time: 15ms
  • Memory: 10544kb
  • [2024-09-11 02:09:41]
  • Submitted

answer

n = 16
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: 15ms
memory: 10544kb

input:

input

output:

18
$2 = $1 * 1.52587890625e-05
$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

result:

wrong answer x=-20,jury=2.06115e-09,participant=2.05487e-09,error=0.00304773