結果

問題 No.1004 サイコロの実装 (2)
ユーザー simansiman
提出日時 2021-06-09 17:35:12
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,356 KB
最終ジャッジ日時 2024-05-06 07:55:58
合計ジャッジ時間 6,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
17,664 KB
testcase_01 AC 77 ms
12,416 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 74 ms
12,416 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 74 ms
12,416 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 78 ms
12,160 KB
testcase_11 AC 76 ms
12,288 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 76 ms
12,416 KB
testcase_14 AC 76 ms
12,160 KB
testcase_15 AC 75 ms
12,416 KB
testcase_16 AC 94 ms
12,288 KB
testcase_17 AC 104 ms
12,160 KB
testcase_18 AC 78 ms
12,160 KB
testcase_19 AC 82 ms
12,160 KB
testcase_20 AC 76 ms
12,160 KB
testcase_21 AC 131 ms
12,288 KB
testcase_22 AC 79 ms
12,288 KB
testcase_23 AC 83 ms
12,288 KB
testcase_24 AC 126 ms
12,288 KB
testcase_25 AC 111 ms
12,544 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A, B, X0, N = gets.split.map(&:to_i)
M = 2 ** 32

def rnd(x)
  (A * x + B) % M
end

x = X0
stones = Array.new(2) { Array.new(2, 0) }
masu = [0, 0]

(2 * N).times do |i|
  t = i % 2
  x = rnd(x)
  v = (x % 6) + 1
  masu[t] += v
  stones[t][masu[t] % 2] += 1
end

s1 = [stones[0][0], stones[0][1]].min
s2 = [stones[1][0], stones[1][1]].min

puts [s1, s2].join(' ')
0