結果
問題 | No.2042 RGB Caps |
ユーザー | rlangevin |
提出日時 | 2022-08-21 15:29:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 379 ms / 2,000 ms |
コード長 | 917 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 81,888 KB |
実行使用メモリ | 97,088 KB |
最終ジャッジ日時 | 2024-04-27 20:37:52 |
合計ジャッジ時間 | 3,725 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,900 KB |
testcase_01 | AC | 34 ms
52,556 KB |
testcase_02 | AC | 33 ms
53,068 KB |
testcase_03 | AC | 35 ms
52,592 KB |
testcase_04 | AC | 34 ms
53,596 KB |
testcase_05 | AC | 33 ms
52,900 KB |
testcase_06 | AC | 109 ms
86,604 KB |
testcase_07 | AC | 159 ms
81,812 KB |
testcase_08 | AC | 248 ms
88,820 KB |
testcase_09 | AC | 102 ms
77,776 KB |
testcase_10 | AC | 337 ms
93,920 KB |
testcase_11 | AC | 92 ms
78,548 KB |
testcase_12 | AC | 379 ms
95,808 KB |
testcase_13 | AC | 378 ms
95,428 KB |
testcase_14 | AC | 375 ms
97,088 KB |
testcase_15 | AC | 38 ms
57,824 KB |
testcase_16 | AC | 149 ms
81,948 KB |
testcase_17 | AC | 91 ms
78,104 KB |
ソースコード
import sys readline = sys.stdin.readline N, K = map(int, readline().split()) D = [[10 ** 18, 0]] for i in range(K): A, c = readline().split() if c == "R": n = 0 elif c == "G": n = 1 else: n = 2 D.append([int(A), n]) D.sort(reverse=True) color = [0] * 3 ans = [] hat = ["R", "G", "B"] for i in range(N): if max(color) == min(color): ind = 0 else: for j in range(3): if color[j] == min(color): ind = j break temp = [0] * 3 for j in range(3): temp[j] = color[j] temp[ind] += 1 if D[-1][0] != i + 1: ans.append(hat[ind]) color[ind] += 1 else: A, c = D[-1] D.pop() if temp[c] == max(temp): ans.append(hat[ind]) color[ind] += 1 else: ans.append(hat[c]) color[c] += 1 print(*ans, sep="")