結果

問題 No.2042 RGB Caps
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-08-19 23:58:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 95,684 KB
最終ジャッジ日時 2024-11-16 02:00:02
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 69 ms
80,640 KB
testcase_07 AC 109 ms
83,200 KB
testcase_08 AC 146 ms
90,692 KB
testcase_09 AC 93 ms
77,952 KB
testcase_10 AC 175 ms
94,916 KB
testcase_11 AC 92 ms
79,624 KB
testcase_12 AC 184 ms
95,684 KB
testcase_13 AC 186 ms
95,684 KB
testcase_14 AC 185 ms
95,668 KB
testcase_15 AC 44 ms
54,016 KB
testcase_16 AC 106 ms
82,176 KB
testcase_17 AC 91 ms
77,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
from collections import defaultdict
ac = defaultdict(str)
d = defaultdict(str)
for i in range(k):
    a,c = input().split()
    a = int(a)-1
    d[a] = c
rgb = ["R","G","B"]
ans = []
for i in range(-(-n//3)*3):
    ans.append(rgb[i%3])
for i in range(n):
    if (i % 3 == 2):continue
    if not d[i]:continue
    c = d[i]
    if i % 3 == 0:
        if ans[i] != c:
            idx = rgb.index(c)
            for j in range(3):
                ans[i+j] = rgb[(idx+j)%3] 
    if i % 3 == 1:
        if ans[i] != c and ans[i-1] != c: 
            ans[i],ans[i+1] = ans[i+1],ans[i]
print("".join(ans[:n]))
            
0