結果

問題 No.454 逆2乗和
ユーザー 👑 rin204rin204
提出日時 2022-11-08 17:43:12
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 229 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-07-22 01:56:37
合計ジャッジ時間 53,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
83,968 KB
testcase_01 AC 1,886 ms
83,200 KB
testcase_02 AC 1,995 ms
83,620 KB
testcase_03 TLE -
testcase_04 AC 1,894 ms
84,524 KB
testcase_05 TLE -
testcase_06 AC 975 ms
83,968 KB
testcase_07 AC 1,900 ms
83,584 KB
testcase_08 AC 1,900 ms
84,260 KB
testcase_09 AC 1,991 ms
84,332 KB
testcase_10 AC 1,912 ms
83,740 KB
testcase_11 AC 1,910 ms
83,200 KB
testcase_12 TLE -
testcase_13 AC 1,899 ms
84,608 KB
testcase_14 AC 1,882 ms
84,352 KB
testcase_15 AC 1,910 ms
83,252 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,898 ms
83,908 KB
testcase_19 TLE -
testcase_20 AC 1,892 ms
83,928 KB
testcase_21 AC 945 ms
83,328 KB
testcase_22 AC 968 ms
83,328 KB
testcase_23 AC 961 ms
83,584 KB
testcase_24 AC 924 ms
83,200 KB
testcase_25 AC 920 ms
83,328 KB
testcase_26 AC 905 ms
83,712 KB
testcase_27 AC 899 ms
83,760 KB
testcase_28 AC 908 ms
83,752 KB
testcase_29 AC 922 ms
83,072 KB
testcase_30 AC 945 ms
83,456 KB
testcase_31 AC 942 ms
83,456 KB
testcase_32 AC 956 ms
84,096 KB
testcase_33 AC 909 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import pi
from decimal import Decimal

x = Decimal(float(input()))
ans = Decimal(0)
for i in range(1, 10 ** 5 + 1):
    ans += Decimal(1) / (Decimal(i + x) * Decimal(i + x))
ans += Decimal(1) / Decimal(i + x)
print(ans)
0