結果

問題 No.606 カラフルタイル
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-08 00:40:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 112,156 KB
最終ジャッジ日時 2024-10-09 10:53:09
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,692 KB
testcase_01 AC 37 ms
52,316 KB
testcase_02 AC 37 ms
53,296 KB
testcase_03 AC 36 ms
53,780 KB
testcase_04 AC 37 ms
52,144 KB
testcase_05 AC 38 ms
52,072 KB
testcase_06 AC 38 ms
53,232 KB
testcase_07 AC 38 ms
52,008 KB
testcase_08 AC 38 ms
53,228 KB
testcase_09 AC 38 ms
52,620 KB
testcase_10 AC 39 ms
52,892 KB
testcase_11 AC 37 ms
52,696 KB
testcase_12 AC 40 ms
53,140 KB
testcase_13 AC 78 ms
77,612 KB
testcase_14 AC 39 ms
52,272 KB
testcase_15 AC 54 ms
63,264 KB
testcase_16 AC 159 ms
92,196 KB
testcase_17 AC 202 ms
112,156 KB
testcase_18 AC 175 ms
105,556 KB
testcase_19 AC 173 ms
102,092 KB
testcase_20 AC 207 ms
107,544 KB
testcase_21 AC 179 ms
100,928 KB
testcase_22 AC 175 ms
100,548 KB
testcase_23 AC 192 ms
103,088 KB
testcase_24 AC 185 ms
99,180 KB
testcase_25 AC 170 ms
90,848 KB
testcase_26 AC 183 ms
105,060 KB
testcase_27 AC 200 ms
111,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, q = map(int, input().split())
Q = []
for i in range(q):
    a, b, c = map(str, input().split())
    b, c = int(b), int(c)
    b, c = b-1, c-1
    Q.append((a, b, c))

Q.reverse()
usedR = set()
usedC = set()
C = [0]*k
for a, b, c in Q:
    if a == 'R':
        if b not in usedR:
            C[c] += n-len(usedC)
        usedR.add(b)
    else:
        if b not in usedC:
            C[c] += n-len(usedR)
        usedC.add(b)
C[0] += n**2-sum(C)
print(*C, sep='\n')
0