結果

問題 No.1033 乱数サイ
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-24 22:45:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2023-08-05 05:30:23
合計ジャッジ時間 2,439 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
71,468 KB
testcase_01 AC 72 ms
71,508 KB
testcase_02 AC 72 ms
71,592 KB
testcase_03 AC 77 ms
71,400 KB
testcase_04 AC 71 ms
71,480 KB
testcase_05 AC 70 ms
71,188 KB
testcase_06 AC 71 ms
71,492 KB
testcase_07 AC 72 ms
71,228 KB
testcase_08 AC 70 ms
71,584 KB
testcase_09 AC 71 ms
71,616 KB
testcase_10 AC 72 ms
71,164 KB
testcase_11 AC 73 ms
75,980 KB
testcase_12 AC 75 ms
76,148 KB
testcase_13 AC 74 ms
75,988 KB
testcase_14 AC 73 ms
76,204 KB
testcase_15 AC 74 ms
75,988 KB
testcase_16 AC 75 ms
76,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
R = 0
for i in range(N+1):
    R += i/(N+1)
print(R)
0