結果

問題 No.2042 RGB Caps
ユーザー とりゐとりゐ
提出日時 2022-08-19 22:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 93,232 KB
最終ジャッジ日時 2024-11-16 01:56:42
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,140 KB
testcase_01 AC 37 ms
53,036 KB
testcase_02 AC 38 ms
51,868 KB
testcase_03 AC 38 ms
52,868 KB
testcase_04 AC 38 ms
52,636 KB
testcase_05 AC 38 ms
52,312 KB
testcase_06 AC 98 ms
89,200 KB
testcase_07 AC 116 ms
81,764 KB
testcase_08 AC 153 ms
86,396 KB
testcase_09 AC 89 ms
77,552 KB
testcase_10 AC 183 ms
93,232 KB
testcase_11 AC 88 ms
79,036 KB
testcase_12 AC 184 ms
90,812 KB
testcase_13 AC 178 ms
90,944 KB
testcase_14 AC 184 ms
91,336 KB
testcase_15 AC 40 ms
53,580 KB
testcase_16 AC 108 ms
81,208 KB
testcase_17 AC 85 ms
77,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=[-1]*n
for i in range(k):
  ai,ci=input().split()
  a[int(ai)-1]=ci

d={'R':0,'G':1,'B':2}
color='RGB'

ans=[]
cnt=[0]*3
for i in range(n):
  if a[i]==-1:
    idx=cnt.index(min(cnt))
    ans.append(color[idx])
    cnt[idx]+=1
  else:
    c=a[i]
    if min(cnt)==cnt[d[c]]:
      ans.append(c)
      cnt[d[c]]+=1
    else:
      idx=cnt.index(min(cnt))
      ans.append(color[idx])
      cnt[idx]+=1

print(*ans,sep='')
0