結果

問題 No.2042 RGB Caps
ユーザー ikomaikoma
提出日時 2022-08-19 23:47:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 100,192 KB
最終ジャッジ日時 2024-11-16 01:59:15
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 32 ms
51,584 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 61 ms
80,512 KB
testcase_07 AC 80 ms
82,816 KB
testcase_08 AC 100 ms
91,264 KB
testcase_09 AC 60 ms
72,576 KB
testcase_10 AC 120 ms
95,960 KB
testcase_11 AC 58 ms
71,552 KB
testcase_12 AC 120 ms
99,912 KB
testcase_13 AC 121 ms
100,192 KB
testcase_14 AC 120 ms
99,924 KB
testcase_15 AC 34 ms
52,352 KB
testcase_16 AC 73 ms
81,920 KB
testcase_17 AC 57 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,K=map(int,input().split())
AC=[input().strip().split()for _ in range(K)]

tmp = ["R" for _ in range(N)]
for a,c in AC:
    a = int(a)-1
    tmp[a] = c
ans = []
for i in range(N):
    if i%3==0:
        ans.append(tmp[i])
    elif i%3==1:
        if tmp[i] == ans[-1]:
            ans.append("G" if tmp[i]=="R" else "R")
        else:
            ans.append(tmp[i])
    else:
        s = set("RGB")
        s.discard(ans[-1])
        s.discard(ans[-2])
        ans.append(s.pop())
print("".join(ans))
0