結果

問題 No.1271 初めての級数
ユーザー ygd.ygd.
提出日時 2020-10-30 21:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,404 KB
最終ジャッジ日時 2024-07-21 23:12:37
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
75,392 KB
testcase_01 AC 150 ms
75,008 KB
testcase_02 AC 145 ms
75,272 KB
testcase_03 AC 142 ms
75,324 KB
testcase_04 AC 144 ms
74,804 KB
testcase_05 AC 140 ms
75,328 KB
testcase_06 AC 141 ms
74,964 KB
testcase_07 AC 141 ms
74,868 KB
testcase_08 AC 140 ms
75,392 KB
testcase_09 AC 142 ms
75,404 KB
testcase_10 AC 148 ms
75,008 KB
testcase_11 AC 140 ms
75,264 KB
testcase_12 AC 147 ms
74,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
k=int(input())
MAX = pow(10,7)
ans = 0
for i in range(1,MAX):
  temp = (1/(i*(i+k)))
  ans += temp
print(ans)
0