結果

問題 No.1271 初めての級数
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-14 21:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-11-20 10:05:07
合計ジャッジ時間 1,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
73,600 KB
testcase_01 AC 55 ms
73,108 KB
testcase_02 AC 55 ms
73,216 KB
testcase_03 AC 55 ms
73,160 KB
testcase_04 AC 56 ms
73,216 KB
testcase_05 AC 57 ms
73,216 KB
testcase_06 AC 59 ms
73,344 KB
testcase_07 AC 55 ms
73,216 KB
testcase_08 AC 55 ms
73,216 KB
testcase_09 AC 54 ms
73,216 KB
testcase_10 AC 55 ms
73,216 KB
testcase_11 AC 53 ms
73,088 KB
testcase_12 AC 55 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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