QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#557077#9136. Exponent CalculatorbeamishboysWA 4ms10580kbPython3125b2024-09-11 02:11:402024-09-11 02:11:41

Judging History

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

  • [2024-09-11 02:11:41]
  • 评测
  • 测评结果:WA
  • 用时:4ms
  • 内存:10580kb
  • [2024-09-11 02:11:40]
  • 提交

answer

n = 23
s = [
    f"$2 = $1 * {1.0/2**n:0.32f}",
    "$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: 4ms
memory: 10580kb

input:

input

output:

25
$2 = $1 * 0.00000011920928955078125000000000
$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 = $...

result:

wrong answer x=-20,jury=2.06115e-09,participant=2.0611e-09,error=2.38415e-05