結果

問題 No.1271 初めての級数
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-14 21:49:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 106 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 73,936 KB
最終ジャッジ日時 2024-11-20 09:25:56
合計ジャッジ時間 1,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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