結果

問題 No.769 UNOシミュレータ
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-02-02 22:24:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-11-22 09:09:17
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,160 KB
testcase_01 AC 100 ms
12,032 KB
testcase_02 AC 102 ms
12,032 KB
testcase_03 AC 99 ms
12,160 KB
testcase_04 AC 98 ms
12,160 KB
testcase_05 AC 98 ms
12,160 KB
testcase_06 AC 97 ms
12,288 KB
testcase_07 AC 100 ms
12,288 KB
testcase_08 AC 98 ms
12,288 KB
testcase_09 AC 116 ms
13,184 KB
testcase_10 AC 111 ms
13,184 KB
testcase_11 AC 111 ms
13,184 KB
testcase_12 AC 245 ms
27,520 KB
testcase_13 AC 255 ms
27,520 KB
testcase_14 AC 249 ms
27,776 KB
testcase_15 AC 397 ms
38,784 KB
testcase_16 AC 380 ms
38,784 KB
testcase_17 AC 402 ms
38,912 KB
testcase_18 AC 527 ms
54,508 KB
testcase_19 AC 557 ms
54,656 KB
testcase_20 AC 545 ms
54,400 KB
testcase_21 AC 513 ms
54,784 KB
testcase_22 AC 94 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, increment, prev_op = 0, false, 1, nil
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
  prev_op = op

  break if l.empty?

  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