結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
12,160 KB
testcase_01 AC 518 ms
12,416 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 356 ms
12,416 KB
testcase_05 AC 390 ms
12,160 KB
testcase_06 WA -
testcase_07 AC 204 ms
12,416 KB
testcase_08 WA -
testcase_09 AC 474 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
k = gets.to_i
c = 0
100000.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 / 100000
0