結果

問題 No.2042 RGB Caps
ユーザー ntudantuda
提出日時 2022-08-23 22:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 101,804 KB
最終ジャッジ日時 2024-04-27 20:37:42
合計ジャッジ時間 2,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,604 KB
testcase_01 AC 34 ms
53,196 KB
testcase_02 AC 34 ms
52,532 KB
testcase_03 AC 34 ms
52,600 KB
testcase_04 AC 34 ms
53,744 KB
testcase_05 AC 34 ms
52,672 KB
testcase_06 AC 61 ms
75,528 KB
testcase_07 AC 116 ms
84,392 KB
testcase_08 AC 145 ms
93,960 KB
testcase_09 AC 86 ms
78,528 KB
testcase_10 AC 174 ms
100,596 KB
testcase_11 AC 78 ms
78,368 KB
testcase_12 AC 182 ms
101,804 KB
testcase_13 AC 176 ms
101,676 KB
testcase_14 AC 173 ms
101,548 KB
testcase_15 AC 35 ms
54,456 KB
testcase_16 AC 98 ms
82,632 KB
testcase_17 AC 79 ms
77,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 and AC[cnt] not in tmp:
            c = AC[cnt]
            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))
0