結果

問題 No.58 イカサマなサイコロ
ユーザー finefine
提出日時 2016-03-29 20:28:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,333 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-07 20:51:53
合計ジャッジ時間 20,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 938 ms
12,288 KB
testcase_01 AC 3,333 ms
12,160 KB
testcase_02 AC 900 ms
12,416 KB
testcase_03 AC 588 ms
12,416 KB
testcase_04 AC 2,168 ms
12,160 KB
testcase_05 AC 2,453 ms
12,160 KB
testcase_06 AC 3,044 ms
12,288 KB
testcase_07 AC 924 ms
12,160 KB
testcase_08 AC 1,539 ms
12,160 KB
testcase_09 AC 3,024 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
k = gets.to_i
c = 0
800000.times{|i|
    t = j = 0
    (n - k).times{
        t += rand(1..6)
        j += rand(1..6)
        }
    k.times{
        t += rand(4..6)
        j += rand(1..6)
        }
    if t > j
        c += 1
    end
    }
p c * 1.0 / 800000
0