結果

問題 No.2042 RGB Caps
ユーザー ntudantuda
提出日時 2022-08-23 22:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 101,672 KB
最終ジャッジ日時 2024-11-16 02:01:11
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 66 ms
74,112 KB
testcase_07 AC 125 ms
83,960 KB
testcase_08 AC 166 ms
93,184 KB
testcase_09 AC 96 ms
78,404 KB
testcase_10 AC 210 ms
100,468 KB
testcase_11 AC 98 ms
77,824 KB
testcase_12 AC 217 ms
101,548 KB
testcase_13 AC 218 ms
101,672 KB
testcase_14 AC 217 ms
101,544 KB
testcase_15 AC 42 ms
52,480 KB
testcase_16 AC 124 ms
82,304 KB
testcase_17 AC 96 ms
77,436 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