結果

問題 No.1271 初めての級数
ユーザー dangodango
提出日時 2023-06-13 20:52:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,748 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 75,568 KB
最終ジャッジ日時 2024-06-22 06:59:42
合計ジャッジ時間 25,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,739 ms
75,568 KB
testcase_01 AC 1,740 ms
75,496 KB
testcase_02 AC 1,745 ms
75,316 KB
testcase_03 AC 1,744 ms
75,552 KB
testcase_04 AC 1,748 ms
75,256 KB
testcase_05 AC 1,742 ms
75,216 KB
testcase_06 AC 1,744 ms
75,516 KB
testcase_07 AC 1,737 ms
75,276 KB
testcase_08 AC 1,738 ms
75,224 KB
testcase_09 AC 1,738 ms
75,400 KB
testcase_10 AC 1,741 ms
75,532 KB
testcase_11 AC 1,743 ms
75,156 KB
testcase_12 AC 1,738 ms
75,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K, S = int(input()), 0
for i in range(1, 10 ** 8):
  S += 1 / (i * (i + K))
print(S)
0