結果

問題 No.2042 RGB Caps
ユーザー neterukunneterukun
提出日時 2022-08-19 21:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 101,400 KB
最終ジャッジ日時 2024-11-16 01:54:19
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,524 KB
testcase_01 AC 35 ms
52,408 KB
testcase_02 AC 35 ms
53,220 KB
testcase_03 AC 36 ms
52,672 KB
testcase_04 AC 34 ms
52,508 KB
testcase_05 AC 35 ms
52,476 KB
testcase_06 AC 39 ms
56,748 KB
testcase_07 AC 152 ms
82,184 KB
testcase_08 AC 238 ms
91,272 KB
testcase_09 AC 106 ms
77,956 KB
testcase_10 AC 323 ms
99,112 KB
testcase_11 AC 83 ms
77,472 KB
testcase_12 AC 362 ms
101,252 KB
testcase_13 AC 357 ms
101,224 KB
testcase_14 AC 353 ms
101,400 KB
testcase_15 AC 40 ms
52,792 KB
testcase_16 AC 136 ms
81,908 KB
testcase_17 AC 94 ms
77,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
info = [list(input().split()) for _ in range(k)]


for i in range(k):
    info[i] = (int(info[i][0]), info[i][1])

info.sort()


ans = ['R', 'G', 'B'] * n
for cnt, color in info:
    cnt -= 1
    if cnt % 3 == 0:
        if ans[cnt] == color:
            continue
        else:
            for i in range(1, 3):
                if ans[cnt + i] == color:
                    ans[cnt], ans[cnt + i] = ans[cnt + i], ans[cnt]

    if cnt % 3 == 1:
        if ans[cnt - 1] == color or ans[cnt] == color:
            continue
        else:
            ans[cnt], ans[cnt + 1] = ans[cnt + 1], ans[cnt]
    if cnt % 3 == 2:
        continue

print(''.join(ans[:n]))
0