QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#499432#9136. Exponent CalculatorBallmer Peak (Ali Safari, AmirMohammad Shahrezaei, Alireza Keshavarz)#WA 16ms10524kbPython3291b2024-07-31 14:09:372024-07-31 14:09:37

Judging History

This is the latest submission verdict.

  • [2024-07-31 14:09:37]
  • Judged
  • Verdict: WA
  • Time: 16ms
  • Memory: 10524kb
  • [2024-07-31 14:09:37]
  • Submitted

answer

from math import factorial as F

ln = 0
for i in range(2, 10):
	print(f"${i} = $1 * ${i - 1}")
	ln += 1

for i in range(2, 10):
	print(f"${i} = ${i} * {1/F(i):.40f}")
	ln += 1

print("$0 = $1 + 1")
ln += 1
for i in range(2, 10):
	print(f"$0 = $0 + ${i}")
	ln += 1
# print(ln)

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 16ms
memory: 10524kb

input:

input

output:

$2 = $1 * $1
$3 = $1 * $2
$4 = $1 * $3
$5 = $1 * $4
$6 = $1 * $5
$7 = $1 * $6
$8 = $1 * $7
$9 = $1 * $8
$2 = $2 * 0.5000000000000000000000000000000000000000
$3 = $3 * 0.1666666666666666574148081281236954964697
$4 = $4 * 0.0416666666666666643537020320309238741174
$5 = $5 * 0.0083333333333333332176851...

result:

wrong output format Expected integer, but "$2" found