結果

問題 No.769 UNOシミュレータ
ユーザー maimai
提出日時 2018-12-16 22:32:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,111 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-11-22 08:42:00
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 92 ms
12,032 KB
testcase_05 AC 91 ms
12,032 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 103 ms
12,544 KB
testcase_10 AC 101 ms
12,544 KB
testcase_11 AC 102 ms
12,672 KB
testcase_12 AC 214 ms
18,048 KB
testcase_13 AC 214 ms
17,920 KB
testcase_14 AC 214 ms
17,792 KB
testcase_15 AC 357 ms
25,600 KB
testcase_16 AC 362 ms
25,088 KB
testcase_17 AC 348 ms
25,088 KB
testcase_18 AC 471 ms
32,384 KB
testcase_19 AC 463 ms
32,000 KB
testcase_20 AC 476 ms
32,512 KB
testcase_21 AC 483 ms
32,128 KB
testcase_22 AC 97 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end

N, M = ascan

turn = 0
vec = 1
numcards = [1]*N

lastturn = 0

commands = M.times.map{gets.chomp}

draw = 0

idx = 0
while idx < M
    lastturn = turn
    c = commands[idx]
    
    if draw > 0
        if c == commands[idx-1]
            draw += c == 'drawtwo' ? 2 : 4
            numcards[turn] += 1
            turn += 1*vec
        else
            numcards[turn] -= draw
            turn += 1*vec
            draw = 0
            idx -= 1
        end
    else
        
        case c
        when 'number'
            numcards[turn] += 1
            turn += 1*vec
        when 'drawtwo'
            numcards[turn] += 1
            draw = 2
            turn += 1*vec
        when 'drawfour'
            numcards[turn] += 1
            draw = 4
            turn += 1*vec
        when 'skip'
            numcards[turn] += 1
            turn += 2*vec
        when 'reverse'
            numcards[turn] += 1
            vec *= -1
            turn += 1*vec
        end
        
    end
    turn = (turn + N) % N
    idx += 1
end

puts "#{lastturn+1} #{numcards[lastturn]-1}"
0