結果

問題 No.1033 乱数サイ
ユーザー pypypymipypypymi
提出日時 2022-02-26 12:27:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 80,652 KB
最終ジャッジ日時 2023-09-17 12:51:03
合計ジャッジ時間 7,495 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,196 KB
testcase_01 AC 74 ms
71,528 KB
testcase_02 AC 74 ms
71,384 KB
testcase_03 AC 74 ms
71,380 KB
testcase_04 AC 74 ms
71,484 KB
testcase_05 AC 74 ms
71,444 KB
testcase_06 AC 75 ms
71,272 KB
testcase_07 AC 74 ms
71,096 KB
testcase_08 AC 73 ms
71,224 KB
testcase_09 AC 78 ms
75,784 KB
testcase_10 AC 77 ms
76,192 KB
testcase_11 AC 81 ms
76,196 KB
testcase_12 AC 160 ms
76,132 KB
testcase_13 AC 294 ms
76,128 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