結果

問題 No.454 逆2乗和
ユーザー shobonvipshobonvip
提出日時 2022-03-12 16:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,752 KB
最終ジャッジ日時 2024-09-16 23:21:37
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,072 KB
testcase_01 AC 71 ms
75,060 KB
testcase_02 AC 69 ms
75,596 KB
testcase_03 AC 70 ms
75,424 KB
testcase_04 AC 69 ms
75,192 KB
testcase_05 AC 72 ms
75,380 KB
testcase_06 AC 71 ms
75,388 KB
testcase_07 AC 71 ms
75,652 KB
testcase_08 AC 71 ms
75,324 KB
testcase_09 AC 70 ms
75,324 KB
testcase_10 AC 71 ms
75,536 KB
testcase_11 AC 70 ms
75,536 KB
testcase_12 AC 69 ms
75,752 KB
testcase_13 AC 70 ms
75,484 KB
testcase_14 AC 71 ms
75,552 KB
testcase_15 AC 70 ms
75,516 KB
testcase_16 AC 69 ms
75,400 KB
testcase_17 AC 69 ms
75,556 KB
testcase_18 AC 69 ms
75,556 KB
testcase_19 AC 70 ms
75,644 KB
testcase_20 AC 69 ms
75,108 KB
testcase_21 AC 63 ms
60,236 KB
testcase_22 AC 70 ms
75,392 KB
testcase_23 AC 69 ms
75,420 KB
testcase_24 AC 69 ms
75,556 KB
testcase_25 AC 69 ms
75,404 KB
testcase_26 AC 71 ms
75,336 KB
testcase_27 AC 71 ms
75,248 KB
testcase_28 AC 69 ms
75,472 KB
testcase_29 AC 69 ms
75,572 KB
testcase_30 AC 69 ms
75,456 KB
testcase_31 AC 69 ms
75,484 KB
testcase_32 AC 69 ms
75,344 KB
testcase_33 AC 69 ms
75,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
x = float(input())

s = math.pi**2/6
for n in range(1, 3000000):
	s -= (x**2 + 2*n*x)/((x+n)**2 * n**2)
print(s)
0