結果
問題 | No.2042 RGB Caps |
ユーザー | ntuda |
提出日時 | 2022-08-23 22:03:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 101,932 KB |
最終ジャッジ日時 | 2024-10-11 04:48:11 |
合計ジャッジ時間 | 5,672 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,968 KB |
testcase_01 | AC | 42 ms
51,840 KB |
testcase_02 | AC | 43 ms
51,712 KB |
testcase_03 | AC | 43 ms
52,096 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 74 ms
73,856 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
N, K = map(int, input().split()) AC = [] for _ in range(K): a, c = input().split() AC.append((int(a), c)) AC = dict(AC) ans = [] dic = {"R": 0, "G": 1, "B": 2} color = ["R", "G", "B"] X = [0, 0, 0] for i in range(-(-N // 3)): tmp = [] k = 0 for j in range(3): cnt = 3 * i + j + 1 if cnt in AC: c = AC[cnt] if c in tmp: tmp.append(color[j]) else: tmp.append(c) k = (dic[c] + 1) % 3 else: while color[k] in tmp: k = (k + 1) % 3 tmp.append(color[k]) ans += tmp ans = ans[:N] print("".join(ans))