結果

問題 No.769 UNOシミュレータ
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-02-02 22:19:03
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 974 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-11-22 09:08:07
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 100 ms
12,032 KB
testcase_02 AC 96 ms
12,032 KB
testcase_03 AC 95 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 101 ms
12,288 KB
testcase_06 AC 99 ms
12,160 KB
testcase_07 AC 99 ms
12,288 KB
testcase_08 AC 99 ms
12,160 KB
testcase_09 WA -
testcase_10 AC 110 ms
13,056 KB
testcase_11 AC 113 ms
13,184 KB
testcase_12 WA -
testcase_13 AC 237 ms
27,392 KB
testcase_14 AC 239 ms
27,392 KB
testcase_15 WA -
testcase_16 AC 386 ms
38,784 KB
testcase_17 WA -
testcase_18 AC 514 ms
54,496 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 522 ms
54,912 KB
testcase_22 AC 96 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
l = readlines.map(&:chomp)

card_nums, draw_card_nums = Hash.new(0), Hash.new(0)
stack_card_num, skip, prev_op, increment = 0, false, nil, 1
current_user_index = 0

loop do
  if skip
    current_user_index = (current_user_index + increment) % N
    skip = false
    next
  end

  op = l.shift

  if op != 'drawtwo' && prev_op == 'drawtwo' ||
     op != 'drawfour' && prev_op == 'drawfour'
    draw_card_nums[current_user_index] += stack_card_num
    current_user_index = (current_user_index + increment) % N
  end

  case op
  when 'drawtwo', 'drawfour'
    stack_card_num += (op == 'drawtwo' ? 2 : 4)
  when 'reverse'
    increment = -increment
  when 'skip'
    skip = true
  end

  card_nums[current_user_index] += 1

  break if l.empty?

  prev_op = op
  current_user_index = (current_user_index + increment) % N
end

card_num = card_nums[current_user_index] - draw_card_nums[current_user_index]
puts "#{current_user_index + 1} #{card_num}"
0