結果

問題 No.2042 RGB Caps
ユーザー 👑 rin204rin204
提出日時 2022-08-19 21:31:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 88,992 KB
最終ジャッジ日時 2024-11-16 01:52:59
合計ジャッジ時間 3,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,244 KB
testcase_01 AC 39 ms
52,416 KB
testcase_02 AC 37 ms
53,112 KB
testcase_03 AC 38 ms
51,816 KB
testcase_04 AC 38 ms
53,112 KB
testcase_05 AC 38 ms
52,956 KB
testcase_06 AC 86 ms
84,400 KB
testcase_07 AC 124 ms
79,660 KB
testcase_08 AC 150 ms
85,048 KB
testcase_09 AC 98 ms
77,416 KB
testcase_10 AC 184 ms
88,072 KB
testcase_11 AC 100 ms
78,124 KB
testcase_12 AC 185 ms
88,992 KB
testcase_13 AC 172 ms
85,368 KB
testcase_14 AC 175 ms
85,176 KB
testcase_15 AC 39 ms
52,968 KB
testcase_16 AC 119 ms
79,132 KB
testcase_17 AC 99 ms
77,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
rgb = [""] * (n + 10)
for _ in range(k):
    a, c = input().split()
    rgb[int(a) - 1] = c

for i in range(0, n, 3):
    se = {"R", "G", "B"}
    se2 = set()
    for j in range(i, 3 + i):
        if rgb[j] in se:
            se.remove(rgb[j])
            se2.add(rgb[j])
    lst = sorted(se)
    for j in range(i, 3 + i):
        if rgb[j] == "":
            rgb[j] = lst.pop()
        elif rgb[j] in se2:
            se2.remove(rgb[j])
        else:
            rgb[j] = lst.pop()
print(*rgb[:n], sep="")
0