結果
問題 | No.11 カードマッチ |
ユーザー | こる |
提出日時 | 2017-01-07 10:39:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 440 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 816,640 KB |
最終ジャッジ日時 | 2024-05-09 21:25:43 |
合計ジャッジ時間 | 5,654 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,624 KB |
testcase_01 | AC | 26 ms
10,752 KB |
testcase_02 | AC | 24 ms
10,752 KB |
testcase_03 | AC | 23 ms
10,752 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
w=int(input()) h=int(input()) n=int(input()) array=[[0 for i in range(h+10)] for j in range(w+10)] sum=0 for j in range(n): a,b=[int(i) for i in input().split()] if array[a][b]==1: sum-=1 array[a][b]=-1 for i in range(1,h+1): if array[a][i]==0: sum+=1 if array[a][i]!=-1: array[a][i]=1 for i in range(1,w+1): if array[i][b]==0: sum+=1 if array[i][b]!=-1: array[i][b]=1 print(sum)