結果

問題 No.1271 初めての級数
ユーザー rusa_dkrusa_dk
提出日時 2020-10-30 22:30:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,753 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 75,564 KB
最終ジャッジ日時 2024-07-22 01:48:22
合計ジャッジ時間 24,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,670 ms
75,564 KB
testcase_01 AC 1,666 ms
75,272 KB
testcase_02 AC 1,695 ms
75,492 KB
testcase_03 AC 1,722 ms
74,880 KB
testcase_04 AC 1,722 ms
75,392 KB
testcase_05 AC 1,703 ms
75,264 KB
testcase_06 AC 1,753 ms
75,392 KB
testcase_07 AC 1,730 ms
75,392 KB
testcase_08 AC 1,725 ms
75,152 KB
testcase_09 AC 1,713 ms
75,008 KB
testcase_10 AC 1,715 ms
75,264 KB
testcase_11 AC 1,722 ms
75,460 KB
testcase_12 AC 1,707 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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