結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,436 KB
testcase_01 AC 38 ms
52,200 KB
testcase_02 AC 38 ms
53,636 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 38 ms
52,068 KB
testcase_05 AC 38 ms
52,408 KB
testcase_06 AC 75 ms
82,308 KB
testcase_07 AC 88 ms
79,064 KB
testcase_08 AC 114 ms
81,788 KB
testcase_09 AC 77 ms
77,172 KB
testcase_10 AC 135 ms
85,068 KB
testcase_11 AC 68 ms
74,624 KB
testcase_12 AC 144 ms
85,228 KB
testcase_13 AC 138 ms
85,184 KB
testcase_14 AC 134 ms
85,084 KB
testcase_15 AC 39 ms
53,184 KB
testcase_16 AC 82 ms
79,096 KB
testcase_17 AC 66 ms
73,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
rec = False #再帰を使うときはこれをTrueにする
if rec:
    sys.setrecursionlimit(5 * 10 ** 5)
    from pypyjit import set_param
    set_param('max_unroll_recursion=-1')
inf = 2 ** 63 - 1
mod = 998244353

n, k = mi()

a = [None] * (n + (3 - n) % 3)
color = ['R', 'G', 'B']
for _ in range(k):
    i, c = input().split()
    i = int(i)
    a[i - 1] = c

ans = [None] * (n + (3 - n) % 3)

for i in range((n + (3 - n) % 3) // 3):
    now = set(color)

    for j in range(3):

        if a[3 * i + j] is not None and a[3 * i + j] in now:
            now.discard(a[3 * i + j])
            ans[3 * i + j] = a[3 * i + j]
            

    for j in range(3):
        if ans[3 * i + j] is None:
            ans[3 * i + j] = now.pop()
print(''.join(ans[:n]))
0