結果

問題 No.1033 乱数サイ
ユーザー YU HiroseYU Hirose
提出日時 2024-06-18 23:28:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 144 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 67,264 KB
最終ジャッジ日時 2024-06-18 23:28:59
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,528 KB
testcase_01 AC 38 ms
52,548 KB
testcase_02 AC 36 ms
52,628 KB
testcase_03 AC 36 ms
52,196 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 36 ms
53,320 KB
testcase_06 AC 34 ms
52,208 KB
testcase_07 AC 34 ms
51,892 KB
testcase_08 AC 34 ms
52,624 KB
testcase_09 AC 39 ms
58,252 KB
testcase_10 AC 39 ms
59,484 KB
testcase_11 AC 42 ms
58,772 KB
testcase_12 AC 133 ms
59,712 KB
testcase_13 AC 310 ms
59,712 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(res / cnt)
0