結果

問題 No.1033 乱数サイ
ユーザー YU HiroseYU Hirose
提出日時 2024-06-18 23:30:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 59,044 KB
最終ジャッジ日時 2024-06-18 23:30:05
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,296 KB
testcase_01 AC 38 ms
52,416 KB
testcase_02 AC 37 ms
52,816 KB
testcase_03 AC 38 ms
52,616 KB
testcase_04 AC 38 ms
53,232 KB
testcase_05 AC 39 ms
51,544 KB
testcase_06 AC 38 ms
53,192 KB
testcase_07 AC 38 ms
52,340 KB
testcase_08 AC 39 ms
52,628 KB
testcase_09 AC 37 ms
52,696 KB
testcase_10 AC 37 ms
52,400 KB
testcase_11 AC 39 ms
58,704 KB
testcase_12 AC 39 ms
57,508 KB
testcase_13 AC 39 ms
57,908 KB
testcase_14 AC 40 ms
58,924 KB
testcase_15 AC 41 ms
58,056 KB
testcase_16 AC 41 ms
59,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
res = 0
cnt = 0
for i in range(n+1):
    res += i*k
    cnt += k

print(res / cnt)
0