結果
問題 | No.769 UNOシミュレータ |
ユーザー | mai |
提出日時 | 2018-12-16 22:26:33 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,161 bytes |
コンパイル時間 | 52 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 36,224 KB |
最終ジャッジ日時 | 2024-11-22 08:41:54 |
合計ジャッジ時間 | 5,893 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,160 KB |
testcase_01 | AC | 88 ms
12,032 KB |
testcase_02 | AC | 94 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 95 ms
12,032 KB |
testcase_06 | AC | 95 ms
12,160 KB |
testcase_07 | AC | 95 ms
12,160 KB |
testcase_08 | AC | 95 ms
12,160 KB |
testcase_09 | AC | 108 ms
12,800 KB |
testcase_10 | AC | 105 ms
12,672 KB |
testcase_11 | AC | 102 ms
12,672 KB |
testcase_12 | AC | 216 ms
18,816 KB |
testcase_13 | AC | 215 ms
19,456 KB |
testcase_14 | AC | 210 ms
18,688 KB |
testcase_15 | AC | 353 ms
26,368 KB |
testcase_16 | AC | 350 ms
25,856 KB |
testcase_17 | WA | - |
testcase_18 | AC | 476 ms
36,224 KB |
testcase_19 | AC | 472 ms
36,224 KB |
testcase_20 | AC | 462 ms
35,328 KB |
testcase_21 | AC | 467 ms
36,224 KB |
testcase_22 | AC | 86 ms
12,032 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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} idx = 0 while idx < M lastturn = turn c = commands[idx] case c when 'number' numcards[turn] += 1 turn += 1*vec when 'drawtwo' numcards[turn] += 1 d = 2 while commands[idx+1] == 'drawtwo' lastturn = turn turn = (turn + vec + N) % N numcards[turn] += 1 d += 2 idx += 1 end numcards[(turn+vec)%N] -= d turn += 2*vec when 'drawfour' numcards[turn] += 1 d = 4 while commands[idx+1] == 'drawfour' lastturn = turn turn = (turn + vec + N) % N numcards[turn] += 1 d += 4 idx += 1 end numcards[(turn+vec)%N] -= d turn += 2*vec when 'skip' numcards[turn] += 1 turn += 2*vec when 'reverse' numcards[turn] += 1 vec *= -1 turn += 1*vec end turn = (turn + N) % N idx += 1 end puts "#{lastturn+1} #{numcards[lastturn]-1}"