結果
問題 | No.769 UNOシミュレータ |
ユーザー | 👑 rin204 |
提出日時 | 2022-01-19 20:26:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,696 KB |
最終ジャッジ日時 | 2024-05-02 19:55:22 |
合計ジャッジ時間 | 4,697 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 44 ms
52,224 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 62 ms
60,544 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 115 ms
76,416 KB |
testcase_11 | AC | 110 ms
76,416 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 41 ms
51,840 KB |
ソースコード
n, m = map(int, input().split()) i = 0 t = 1 bef = "_" have = [0] * n cnt = 0 for _ in range(m - 1): l = input() if l != bef and bef[0] == "d": if bef[4] == "t": have[i] -= 2 * cnt else: have[i] -= 4 * cnt cnt = 0 i += t else: have[i] += 1 if l[0] == "s": i += 2 * t elif l[0] == "r": t *= -1 i += t elif l[0] == "d": i += t cnt += 1 else: i += t i %= n bef = l print(i + 1, have[i] + 1)