結果

問題 No.1271 初めての級数
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-07 09:52:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-07-23 03:04:28
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,176 KB
testcase_02 AC 38 ms
52,900 KB
testcase_03 AC 38 ms
52,204 KB
testcase_04 AC 39 ms
53,804 KB
testcase_05 AC 38 ms
52,888 KB
testcase_06 AC 38 ms
52,600 KB
testcase_07 AC 38 ms
52,808 KB
testcase_08 AC 38 ms
53,172 KB
testcase_09 AC 38 ms
53,216 KB
testcase_10 AC 39 ms
52,684 KB
testcase_11 AC 38 ms
53,652 KB
testcase_12 AC 38 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
ans = 0
for i in range(1,k+1):
    ans += (1 / k) * (1 / i)
print(ans)
0