結果

問題 No.1033 乱数サイ
ユーザー pypypymipypypymi
提出日時 2022-02-26 12:27:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 68,500 KB
最終ジャッジ日時 2024-07-04 08:32:35
合計ジャッジ時間 7,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,044 KB
testcase_01 AC 36 ms
52,016 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 36 ms
52,396 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 36 ms
53,108 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 36 ms
52,328 KB
testcase_08 AC 36 ms
53,832 KB
testcase_09 AC 38 ms
57,516 KB
testcase_10 AC 45 ms
59,564 KB
testcase_11 AC 43 ms
59,480 KB
testcase_12 AC 125 ms
59,536 KB
testcase_13 AC 251 ms
59,508 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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