結果
問題 | No.2042 RGB Caps |
ユーザー | asumo0729 |
提出日時 | 2022-09-19 16:21:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 194 ms / 2,000 ms |
コード長 | 1,355 bytes |
コンパイル時間 | 404 ms |
コンパイル使用メモリ | 82,348 KB |
実行使用メモリ | 90,900 KB |
最終ジャッジ日時 | 2024-12-22 02:30:59 |
合計ジャッジ時間 | 4,263 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
61,056 KB |
testcase_01 | AC | 53 ms
60,928 KB |
testcase_02 | AC | 54 ms
61,440 KB |
testcase_03 | AC | 52 ms
61,248 KB |
testcase_04 | AC | 52 ms
61,056 KB |
testcase_05 | AC | 54 ms
61,056 KB |
testcase_06 | AC | 160 ms
82,212 KB |
testcase_07 | AC | 125 ms
81,536 KB |
testcase_08 | AC | 157 ms
86,484 KB |
testcase_09 | AC | 107 ms
77,824 KB |
testcase_10 | AC | 187 ms
89,844 KB |
testcase_11 | AC | 106 ms
78,976 KB |
testcase_12 | AC | 191 ms
90,900 KB |
testcase_13 | AC | 188 ms
90,696 KB |
testcase_14 | AC | 194 ms
90,624 KB |
testcase_15 | AC | 55 ms
61,312 KB |
testcase_16 | AC | 140 ms
80,512 KB |
testcase_17 | AC | 102 ms
78,004 KB |
ソースコード
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))