結果

問題 No.2042 RGB Caps
ユーザー FromBooskaFromBooska
提出日時 2023-08-10 18:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 930 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,172 KB
最終ジャッジ日時 2024-11-17 02:55:47
合計ジャッジ時間 8,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 747 ms
103,296 KB
testcase_07 AC 226 ms
80,296 KB
testcase_08 AC 555 ms
90,860 KB
testcase_09 AC 114 ms
77,696 KB
testcase_10 AC 848 ms
106,520 KB
testcase_11 AC 161 ms
77,256 KB
testcase_12 AC 916 ms
109,024 KB
testcase_13 AC 930 ms
109,028 KB
testcase_14 AC 926 ms
109,172 KB
testcase_15 AC 39 ms
52,864 KB
testcase_16 AC 210 ms
79,232 KB
testcase_17 AC 103 ms
76,904 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