結果

問題 No.2042 RGB Caps
ユーザー FromBooskaFromBooska
提出日時 2023-08-10 18:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 964 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,776 KB
最終ジャッジ日時 2024-04-28 11:38:40
合計ジャッジ時間 8,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 767 ms
103,680 KB
testcase_07 AC 240 ms
80,128 KB
testcase_08 AC 532 ms
90,676 KB
testcase_09 AC 123 ms
77,440 KB
testcase_10 AC 849 ms
106,524 KB
testcase_11 AC 168 ms
77,056 KB
testcase_12 AC 872 ms
108,760 KB
testcase_13 AC 918 ms
108,776 KB
testcase_14 AC 964 ms
108,676 KB
testcase_15 AC 44 ms
52,352 KB
testcase_16 AC 223 ms
79,744 KB
testcase_17 AC 116 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# とにかくできるだけイーブンにR, G, Bを増やしていく
# 証言は順番昇順でソート
# 証言の色が足らなければ増やす、そうでなければイーブンにする
# 同順位でいいので不可能はないはず

N, K = map(int, input().split())
testimony = {}
for i in range(K):
    a, c = map(str, input().split())
    if c == 'R':
        testimony[int(a)] = 0
    elif c == 'G':
        testimony[int(a)] = 1
    elif c == 'B':
        testimony[int(a)] = 2

RGB = [0, 0, 0]
ans = ''
string = 'RGB'

for i in range(N):
    smallest_num = min(RGB)
    if i+1 in testimony:
        if RGB[testimony[i+1]] == smallest_num:
            RGB[testimony[i+1]] += 1
            ans += string[testimony[i+1]]
        else:
            for j in range(3):
                if RGB[j] == smallest_num:
                    RGB[j] += 1
                    ans += string[j]
                    break
    else:
        for j in range(3):
            if RGB[j] == smallest_num:
                RGB[j] += 1
                ans += string[j]
                break
    #print('i', i, 'RGB', RGB, 'ans', ans)
print(ans)


0