結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 81 ms
12,032 KB
testcase_07 AC 87 ms
13,156 KB
testcase_08 AC 150 ms
16,016 KB
testcase_09 AC 50 ms
11,776 KB
testcase_10 AC 198 ms
21,012 KB
testcase_11 AC 51 ms
11,520 KB
testcase_12 AC 208 ms
21,064 KB
testcase_13 AC 214 ms
20,884 KB
testcase_14 AC 215 ms
20,952 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 78 ms
13,024 KB
testcase_17 AC 43 ms
11,392 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