結果

問題 No.2042 RGB Caps
ユーザー chineristACchineristAC
提出日時 2022-08-19 22:32:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 85,144 KB
最終ジャッジ日時 2024-11-16 01:58:05
合計ジャッジ時間 2,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,652 KB
testcase_01 AC 44 ms
56,488 KB
testcase_02 AC 40 ms
57,152 KB
testcase_03 AC 41 ms
57,828 KB
testcase_04 AC 41 ms
55,820 KB
testcase_05 AC 40 ms
56,792 KB
testcase_06 AC 72 ms
80,952 KB
testcase_07 AC 86 ms
79,256 KB
testcase_08 AC 118 ms
82,524 KB
testcase_09 AC 81 ms
78,104 KB
testcase_10 AC 128 ms
84,524 KB
testcase_11 AC 72 ms
78,324 KB
testcase_12 AC 136 ms
85,144 KB
testcase_13 AC 131 ms
84,964 KB
testcase_14 AC 132 ms
84,888 KB
testcase_15 AC 44 ms
56,640 KB
testcase_16 AC 82 ms
79,288 KB
testcase_17 AC 72 ms
77,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())



N,K = mi()
res = [""] * (N+3)
for _ in range(K):
    a,c = input().split()
    a = int(a)-1
    res[a] = c

for i in range(0,N,3):
    for S in permutations("RGB"):
        S = "".join(S)
        flag = True
        for j in range(3):
            if res[i+j] and res[i+j] not in S[:j+1]:
                flag = False
        if flag:
            res[i],res[i+1],res[i+2] = S[0],S[1],S[2]
            break

print("".join(res[:N]))
    
0