結果
問題 | No.58 イカサマなサイコロ |
ユーザー | wotsushi |
提出日時 | 2017-04-15 10:41:10 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 227 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-07-18 17:53:31 |
合計ジャッジ時間 | 11,802 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,684 ms
17,792 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i K = gets.to_i M = 10**6 ans = (1..M).count { (K >= 1 ? (1..K).map {rand(4..6)}.inject(:+) : 0) + (K <= N - 1 ? (1..(N - K)).map {rand(1..6)}.inject(:+) : 0) > (1..N).map {rand(1..6)}.inject(:+)}.fdiv(M) puts ans