結果

問題 No.2042 RGB Caps
ユーザー titiatitia
提出日時 2022-08-22 00:52:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,268 KB
最終ジャッジ日時 2024-04-27 20:37:39
合計ジャッジ時間 2,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 70 ms
12,288 KB
testcase_07 AC 73 ms
13,284 KB
testcase_08 AC 122 ms
16,356 KB
testcase_09 AC 42 ms
11,904 KB
testcase_10 AC 172 ms
21,132 KB
testcase_11 AC 45 ms
11,520 KB
testcase_12 AC 178 ms
21,204 KB
testcase_13 AC 182 ms
21,268 KB
testcase_14 AC 184 ms
21,136 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 67 ms
13,408 KB
testcase_17 AC 38 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())

D=dict()
for i in range(K):
    x,y=input().split()
    D[int(x)-1]=y
    
ANS=[""]*(N+10)

for i in range(0,N,3):
    LIST=[]
    if i in D:
        LIST.append(D[i])
    if i+1 in D:
        if D[i+1] in LIST:
            pass
        else:
            LIST.append(D[i+1])
    if i+2 in D:
        if D[i+2] in LIST:
            pass
        else:
            LIST.append(D[i+2])

    while len(LIST)<3:
        for k in ["R","G","B"]:
            if k in LIST:
                continue
            else:
                LIST.append(k)

    ANS[i]=LIST[0]
    ANS[i+1]=LIST[1]
    ANS[i+2]=LIST[2]    
  
print("".join(ANS[:N]))
0