結果

問題 No.606 カラフルタイル
ユーザー H3PO4H3PO4
提出日時 2020-10-09 14:01:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,400 KB
最終ジャッジ日時 2024-07-20 06:47:46
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 45 ms
11,392 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 179 ms
18,560 KB
testcase_17 AC 293 ms
34,384 KB
testcase_18 AC 228 ms
26,340 KB
testcase_19 AC 218 ms
26,056 KB
testcase_20 AC 328 ms
33,108 KB
testcase_21 AC 234 ms
26,344 KB
testcase_22 AC 230 ms
26,344 KB
testcase_23 AC 248 ms
27,648 KB
testcase_24 AC 295 ms
29,356 KB
testcase_25 AC 251 ms
27,308 KB
testcase_26 AC 289 ms
34,400 KB
testcase_27 AC 299 ms
34,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N, K, Q = map(int, input().split())
queries = []
for _ in range(Q):
    a, b, c = input().split()
    queries.append((a, int(b) - 1, int(c) - 1))

ans = [0] * K
R, C = set(), set()
for a, b, c in queries[::-1]:
    if a == 'R':
        # 行
        if b in R:
            continue
        R.add(b)
        ans[c] += N - len(C)
    else:
        # 列
        if b in C:
            continue
        C.add(b)
        ans[c] += N - len(R)
ans[0] = N ** 2 - sum(ans[1:])
print(*ans, sep='\n')
0