結果

問題 No.11 カードマッチ
ユーザー kwnwsdnckwnwsdnc
提出日時 2018-04-02 13:50:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-26 06:35:35
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 88 ms
17,408 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 164 ms
26,496 KB
testcase_07 AC 78 ms
16,000 KB
testcase_08 AC 100 ms
18,944 KB
testcase_09 AC 162 ms
26,496 KB
testcase_10 AC 137 ms
23,424 KB
testcase_11 AC 125 ms
22,016 KB
testcase_12 AC 131 ms
22,784 KB
testcase_13 AC 124 ms
21,760 KB
testcase_14 AC 82 ms
16,768 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 37 ms
11,392 KB
testcase_17 AC 38 ms
11,520 KB
testcase_18 AC 36 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ln=[]
card=[]
for i in range(3):
    ln.append(int(input()))
for i in range(ln[2]):
    card.append(list(map(int,input().split())))

exist=[[0 for i in range(ln[j]+1)] for j in range(2)]

for i in range(2):
    for j in range(ln[2]):
        if exist[i][card[j][i]]==0:
            exist[i][card[j][i]]=1
            
n=ln[0]-exist[0].count(1)
m=ln[1]-exist[1].count(1)
ans=(ln[0]*ln[1]-n*m)-ln[2]
print(ans)
0