結果

問題 No.606 カラフルタイル
ユーザー 👑 rin204rin204
提出日時 2022-10-31 23:15:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 115,072 KB
最終ジャッジ日時 2024-07-08 10:53:25
合計ジャッジ時間 4,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 34 ms
51,584 KB
testcase_04 AC 34 ms
51,456 KB
testcase_05 AC 34 ms
51,456 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 33 ms
51,968 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 33 ms
51,456 KB
testcase_12 AC 34 ms
52,352 KB
testcase_13 AC 77 ms
77,824 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 49 ms
61,312 KB
testcase_16 AC 141 ms
96,512 KB
testcase_17 AC 178 ms
115,072 KB
testcase_18 AC 151 ms
109,184 KB
testcase_19 AC 149 ms
103,808 KB
testcase_20 AC 180 ms
111,488 KB
testcase_21 AC 165 ms
105,472 KB
testcase_22 AC 157 ms
105,216 KB
testcase_23 AC 161 ms
103,808 KB
testcase_24 AC 170 ms
104,744 KB
testcase_25 AC 157 ms
100,352 KB
testcase_26 AC 173 ms
109,984 KB
testcase_27 AC 173 ms
114,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

h = n
w = n
se_h = set()
se_w = set()
ans = [0] * k
for a, b, c in query[::-1]:
    b = int(b)
    c = int(c) - 1
    if a == "R":
        if b in se_h:
            continue
        se_h.add(b)
        h -= 1
        ans[c] += w
    else:
        if b in se_w:
            continue
        se_w.add(b)
        w -= 1
        ans[c] += h

ans[0] = n * n - sum(ans[1:])
print(*ans, sep="\n")

        
0