結果

問題 No.1271 初めての級数
ユーザー gorugo30gorugo30
提出日時 2021-02-25 17:49:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 85 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 53,396 KB
最終ジャッジ日時 2024-10-01 08:05:05
合計ジャッジ時間 1,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,948 KB
testcase_02 AC 38 ms
52,680 KB
testcase_03 AC 39 ms
53,396 KB
testcase_04 AC 40 ms
51,684 KB
testcase_05 AC 39 ms
52,432 KB
testcase_06 AC 38 ms
51,936 KB
testcase_07 AC 37 ms
52,220 KB
testcase_08 AC 39 ms
52,696 KB
testcase_09 AC 39 ms
53,384 KB
testcase_10 AC 38 ms
51,684 KB
testcase_11 AC 38 ms
52,212 KB
testcase_12 AC 39 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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