結果

問題 No.769 UNOシミュレータ
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-02-02 22:22:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,788 KB
最終ジャッジ日時 2024-05-02 00:27:19
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 92 ms
12,416 KB
testcase_04 AC 92 ms
12,416 KB
testcase_05 AC 92 ms
12,288 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 91 ms
12,544 KB
testcase_08 AC 91 ms
12,416 KB
testcase_09 AC 100 ms
13,312 KB
testcase_10 AC 102 ms
13,312 KB
testcase_11 AC 102 ms
13,312 KB
testcase_12 AC 229 ms
27,520 KB
testcase_13 AC 233 ms
27,648 KB
testcase_14 AC 232 ms
27,776 KB
testcase_15 AC 375 ms
38,912 KB
testcase_16 AC 370 ms
39,040 KB
testcase_17 AC 370 ms
39,040 KB
testcase_18 AC 499 ms
54,636 KB
testcase_19 AC 500 ms
54,680 KB
testcase_20 AC 500 ms
54,500 KB
testcase_21 AC 500 ms
54,788 KB
testcase_22 AC 91 ms
12,160 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
    stack_card_num = 0
  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