結果

問題 No.1271 初めての級数
ユーザー rlangevinrlangevin
提出日時 2024-07-09 08:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-07-09 08:58:52
合計ジャッジ時間 2,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,500 KB
testcase_01 AC 34 ms
52,208 KB
testcase_02 AC 35 ms
53,208 KB
testcase_03 AC 36 ms
53,380 KB
testcase_04 AC 34 ms
53,292 KB
testcase_05 AC 33 ms
52,340 KB
testcase_06 AC 33 ms
53,340 KB
testcase_07 AC 35 ms
52,880 KB
testcase_08 AC 35 ms
52,988 KB
testcase_09 AC 34 ms
53,128 KB
testcase_10 AC 35 ms
52,364 KB
testcase_11 AC 34 ms
52,552 KB
testcase_12 AC 34 ms
53,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import pi

K = int(input())
if K == 0:
    print(pi**2/6)
    exit()
ans = 0
for i in range(1, K + 1):
    ans += 1 / i
print(ans/K)
0