結果

問題 No.2042 RGB Caps
ユーザー asumo0729asumo0729
提出日時 2022-09-19 16:21:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 91,124 KB
最終ジャッジ日時 2024-06-01 16:17:57
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
62,696 KB
testcase_01 AC 49 ms
61,328 KB
testcase_02 AC 52 ms
61,888 KB
testcase_03 AC 50 ms
61,556 KB
testcase_04 AC 50 ms
62,316 KB
testcase_05 AC 50 ms
62,236 KB
testcase_06 AC 157 ms
82,272 KB
testcase_07 AC 119 ms
81,396 KB
testcase_08 AC 149 ms
86,324 KB
testcase_09 AC 99 ms
77,788 KB
testcase_10 AC 174 ms
89,964 KB
testcase_11 AC 97 ms
78,976 KB
testcase_12 AC 177 ms
91,124 KB
testcase_13 AC 181 ms
90,616 KB
testcase_14 AC 183 ms
90,624 KB
testcase_15 AC 50 ms
61,892 KB
testcase_16 AC 116 ms
80,816 KB
testcase_17 AC 99 ms
77,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])
# sort(key=lambda x:(x[1], x[2]))


###############################################################

N, K = lp()
A = [-1 for _ in range(N)]
for _ in range(K):
    a, c = input().split()
    a = int(a) - 1
    A[a] = c
ans = []
RGB = 'RGB'
for i in range(N):
    if i % 3 == 0:
        s = 'R' if A[i] == -1 else A[i]
        ans.append(s)
    elif i % 3 == 1:
        s = 'R' if A[i] == -1 else A[i]
        if ans[-1] == s:
            for t in RGB:
                if t != s:
                    s = t
                    break
        ans.append(s)
    else:
        ss = ans[-1] + ans[-2]
        for t in RGB:
            if t not in ss:
                s = t
        ans.append(s)
print(''.join(ans))
0