結果

問題 No.11 カードマッチ
ユーザー TawaraTawara
提出日時 2015-12-02 23:29:34
言語 Python2
(2.7.18)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-10-11 19:57:28
合計ジャッジ時間 1,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 22 ms
12,928 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 36 ms
21,760 KB
testcase_07 AC 20 ms
11,392 KB
testcase_08 AC 26 ms
14,336 KB
testcase_09 AC 36 ms
21,760 KB
testcase_10 AC 30 ms
18,816 KB
testcase_11 AC 30 ms
17,536 KB
testcase_12 AC 30 ms
18,176 KB
testcase_13 AC 30 ms
16,896 KB
testcase_14 AC 22 ms
12,032 KB
testcase_15 AC 11 ms
6,272 KB
testcase_16 AC 12 ms
6,784 KB
testcase_17 AC 13 ms
6,912 KB
testcase_18 AC 12 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f=input;m=n=0;W=f();H=f();N=f()
S=[1]*(W+1);K=[1]*(H+1);a=-N
while N:
	N-=1;s,k=map(int,raw_input().split())
	if S[s]:a+=H-n;S[s]=0;m+=1
	if K[k]:a+=W-m;K[k]=0;n+=1
print a
0