結果

問題 No.606 カラフルタイル
ユーザー qibqib
提出日時 2023-01-26 15:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 128,128 KB
最終ジャッジ日時 2024-06-27 09:33:46
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 39 ms
52,204 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 77 ms
78,008 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 53 ms
61,952 KB
testcase_16 AC 156 ms
96,076 KB
testcase_17 AC 221 ms
127,608 KB
testcase_18 AC 176 ms
109,224 KB
testcase_19 AC 175 ms
105,472 KB
testcase_20 AC 247 ms
116,076 KB
testcase_21 AC 180 ms
105,600 KB
testcase_22 AC 184 ms
105,216 KB
testcase_23 AC 208 ms
106,536 KB
testcase_24 AC 221 ms
110,092 KB
testcase_25 AC 182 ms
96,056 KB
testcase_26 AC 213 ms
122,904 KB
testcase_27 AC 220 ms
128,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

row = {}
col = {}
cnt = {}
for i in range(q - 1, -1, -1):
  a, b, c = queries[i]
  b = int(b) - 1
  c = int(c) - 1
  if a == 'R':
    if row.get(b, None) is None:
      cnt[c] = cnt.get(c, 0) + n - len(col)
      row[b] = c
  else:
    if col.get(b, None) is None:
      cnt[c] = cnt.get(c, 0) + n - len(row)
      col[b] = c

rest = n * n
for c, v in cnt.items():
  if c != 0:
    rest -= v

cnt[0] = rest

for c in range(k):
  print(cnt.get(c, 0))
0