結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
17,536 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 84 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 WA -
testcase_07 AC 80 ms
12,160 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 85 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:14: warning: assigned but unused variable - t
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) }

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

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

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