結果

問題 No.606 カラフルタイル
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-12 22:16:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,064 KB
最終ジャッジ日時 2024-07-21 10:38:33
合計ジャッジ時間 5,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 41 ms
11,776 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 142 ms
28,032 KB
testcase_17 AC 250 ms
46,812 KB
testcase_18 AC 168 ms
35,564 KB
testcase_19 AC 168 ms
35,096 KB
testcase_20 AC 285 ms
44,788 KB
testcase_21 AC 183 ms
34,796 KB
testcase_22 AC 181 ms
34,792 KB
testcase_23 AC 214 ms
38,664 KB
testcase_24 AC 251 ms
41,064 KB
testcase_25 AC 216 ms
36,592 KB
testcase_26 AC 246 ms
47,064 KB
testcase_27 AC 246 ms
46,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	import sys
	input = sys.stdin.readline
	N, C, q = map(int, input().split())
	gyo_cnt, ret_cnt = 0, 0
	gyo_visit, ret_visit = set(), set()
	Query = [input().split() for i in range(q)][::-1]
	ans = [0] * C
	for t, n, c in Query:
		n, c = int(n), int(c)
		n -= 1; c -= 1
		if t == "R":
			if n in gyo_visit: continue
			ans[c] += N - ret_cnt
			gyo_cnt += 1
			gyo_visit.add(n)
		else:
			if n in ret_visit: continue
			ans[c] += N - gyo_cnt
			ret_cnt += 1
			ret_visit.add(n)
	ans[0] = N ** 2 - sum(ans[1:])
	print(*ans, sep="\n")
if __name__ == '__main__':
	main()
	
0