結果
問題 | No.769 UNOシミュレータ |
ユーザー | Takuya Noguchi |
提出日時 | 2019-01-31 19:40:20 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 54,564 KB |
最終ジャッジ日時 | 2024-11-22 09:07:54 |
合計ジャッジ時間 | 6,966 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 92 ms
12,288 KB |
testcase_02 | AC | 94 ms
12,032 KB |
testcase_03 | AC | 91 ms
12,160 KB |
testcase_04 | AC | 95 ms
12,416 KB |
testcase_05 | AC | 95 ms
12,288 KB |
testcase_06 | AC | 96 ms
12,416 KB |
testcase_07 | AC | 99 ms
12,288 KB |
testcase_08 | WA | - |
testcase_09 | AC | 110 ms
13,184 KB |
testcase_10 | AC | 109 ms
13,056 KB |
testcase_11 | AC | 110 ms
13,056 KB |
testcase_12 | AC | 258 ms
27,520 KB |
testcase_13 | AC | 262 ms
27,136 KB |
testcase_14 | WA | - |
testcase_15 | AC | 428 ms
38,784 KB |
testcase_16 | WA | - |
testcase_17 | AC | 428 ms
38,784 KB |
testcase_18 | WA | - |
testcase_19 | AC | 572 ms
54,372 KB |
testcase_20 | AC | 573 ms
54,272 KB |
testcase_21 | WA | - |
testcase_22 | AC | 90 ms
12,032 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N, M = gets.split.map(&:to_i) cards = Hash.new(0) current_user_index = 0 increment = 1 ops = readlines.map(&:chomp) op = ops.shift prev_op = nil stack_cards = 0 loop do break if ops.empty? if op != 'drawtwo' && prev_op == 'drawtwo' || op != 'drawfour' && prev_op == 'drawfour' cards[current_user_index] -= stack_cards stack_cards, prev_op = 0, nil current_user_index += increment current_user_index = current_user_index % N next end cards[current_user_index] += 1 if op == 'skip' current_user_index += increment * 2 elsif op == 'reverse' increment = -increment current_user_index += increment else stack_cards += 2 if op == 'drawtwo' stack_cards += 4 if op == 'drawfour' current_user_index += increment end current_user_index = current_user_index % N prev_op = op op = ops.shift end puts [current_user_index + 1, cards[current_user_index] + 1].join(' ')