結果

問題 No.1271 初めての級数
ユーザー googol_S0googol_S0
提出日時 2020-11-02 15:10:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 61 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 66,380 KB
最終ジャッジ日時 2024-07-22 06:14:52
合計ジャッジ時間 1,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 36 ms
52,572 KB
testcase_02 AC 35 ms
53,492 KB
testcase_03 AC 36 ms
51,884 KB
testcase_04 AC 37 ms
52,284 KB
testcase_05 AC 36 ms
53,008 KB
testcase_06 AC 37 ms
52,880 KB
testcase_07 AC 36 ms
53,188 KB
testcase_08 AC 36 ms
52,724 KB
testcase_09 AC 36 ms
52,532 KB
testcase_10 AC 37 ms
52,544 KB
testcase_11 AC 36 ms
52,052 KB
testcase_12 AC 36 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(input())
P=0
for i in range(1,K+1):
  P+=1/i
print(P/K)
0