結果

問題 No.58 イカサマなサイコロ
ユーザー mlihua09mlihua09
提出日時 2020-09-14 23:08:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,848 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 78,764 KB
最終ジャッジ日時 2024-06-22 00:59:33
合計ジャッジ時間 14,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
78,128 KB
testcase_01 AC 1,712 ms
77,868 KB
testcase_02 AC 789 ms
77,808 KB
testcase_03 AC 678 ms
77,784 KB
testcase_04 AC 1,485 ms
78,764 KB
testcase_05 AC 1,600 ms
78,456 KB
testcase_06 AC 1,848 ms
78,236 KB
testcase_07 AC 802 ms
77,980 KB
testcase_08 AC 1,230 ms
78,524 KB
testcase_09 AC 1,820 ms
78,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import random
N = int(input())

K = int(input())

ans = 0

for i in range(10 ** 6):
    if sum([random.randrange(6) for j in range(N)]) < sum([random.randrange(6) for j in range(N - K)] + [random.randrange(3, 6) for j in range(K)]):
        ans += 1
        
print(ans / 10 ** 6)
0