結果

問題 No.606 カラフルタイル
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-06-05 22:59:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,900 KB
最終ジャッジ日時 2024-06-30 10:08:39
合計ジャッジ時間 7,360 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 60 ms
11,904 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 358 ms
26,624 KB
testcase_17 AC 507 ms
45,768 KB
testcase_18 AC 408 ms
35,544 KB
testcase_19 AC 393 ms
35,072 KB
testcase_20 AC 558 ms
43,744 KB
testcase_21 AC 417 ms
35,028 KB
testcase_22 AC 412 ms
34,900 KB
testcase_23 AC 448 ms
38,588 KB
testcase_24 AC 500 ms
39,784 KB
testcase_25 AC 459 ms
34,944 KB
testcase_26 AC 499 ms
45,796 KB
testcase_27 AC 512 ms
45,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, q = map(int, input().split())
s = [input().split() for _ in range(q)]
r = [0]*k
x, y = set(), set()
for a, b, c in s[::-1]:
    b, c = int(b), int(c)
    if a == 'C':
        s, t = x, y
    else:
        s, t = y, x
    if b in t:
        continue
    t.add(b)
    r[c-1] += n-len(s)
r[0] += n*n-sum(r)
for i in r:
    print(i)
0