結果

問題 No.1033 乱数サイ
ユーザー pypypymipypypymi
提出日時 2022-02-01 10:44:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 140 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-06-11 09:08:24
合計ジャッジ時間 4,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,088 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 34 ms
51,456 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 38 ms
58,368 KB
testcase_10 AC 39 ms
59,392 KB
testcase_11 AC 63 ms
75,648 KB
testcase_12 AC 179 ms
75,392 KB
testcase_13 AC 384 ms
75,520 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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