結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 91 ms
12,288 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 92 ms
12,160 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 102 ms
12,672 KB
testcase_10 AC 103 ms
12,800 KB
testcase_11 AC 103 ms
12,800 KB
testcase_12 AC 217 ms
18,048 KB
testcase_13 AC 218 ms
18,176 KB
testcase_14 AC 217 ms
18,048 KB
testcase_15 AC 355 ms
25,216 KB
testcase_16 AC 354 ms
25,472 KB
testcase_17 AC 355 ms
25,088 KB
testcase_18 AC 475 ms
32,512 KB
testcase_19 AC 472 ms
32,128 KB
testcase_20 AC 491 ms
32,128 KB
testcase_21 AC 494 ms
32,256 KB
testcase_22 AC 91 ms
12,288 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