結果

問題 No.1271 初めての級数
ユーザー nagissnagiss
提出日時 2020-10-30 21:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 75,360 KB
最終ジャッジ日時 2024-07-21 23:04:57
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
75,008 KB
testcase_01 AC 65 ms
75,008 KB
testcase_02 AC 65 ms
75,264 KB
testcase_03 AC 63 ms
75,136 KB
testcase_04 AC 65 ms
75,088 KB
testcase_05 AC 64 ms
75,200 KB
testcase_06 AC 64 ms
75,008 KB
testcase_07 AC 63 ms
74,880 KB
testcase_08 AC 64 ms
74,880 KB
testcase_09 AC 62 ms
75,008 KB
testcase_10 AC 64 ms
75,264 KB
testcase_11 AC 65 ms
75,008 KB
testcase_12 AC 63 ms
75,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
ans = 0
for n in range(1, 2*10**6):
    ans += 1.0 / (n * (n + K))
print(ans)
0