結果

問題 No.1033 乱数サイ
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-05 15:17:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 87,280 KB
実行使用メモリ 75,996 KB
最終ジャッジ日時 2023-09-08 17:31:45
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,300 KB
testcase_01 AC 68 ms
71,276 KB
testcase_02 AC 67 ms
70,824 KB
testcase_03 AC 67 ms
71,132 KB
testcase_04 AC 65 ms
71,216 KB
testcase_05 AC 67 ms
71,304 KB
testcase_06 AC 67 ms
71,244 KB
testcase_07 AC 67 ms
71,332 KB
testcase_08 AC 67 ms
71,180 KB
testcase_09 AC 69 ms
71,076 KB
testcase_10 AC 66 ms
71,016 KB
testcase_11 AC 69 ms
75,928 KB
testcase_12 AC 71 ms
75,952 KB
testcase_13 AC 71 ms
75,624 KB
testcase_14 AC 70 ms
75,996 KB
testcase_15 AC 69 ms
75,980 KB
testcase_16 AC 70 ms
75,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
ans = 0
for i in range(n+1):
    ans += i/(n+1)
print(ans)
0