結果

問題 No.11 カードマッチ
ユーザー cherrypi59cherrypi59
提出日時 2018-09-30 17:41:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-10-12 09:14:40
合計ジャッジ時間 2,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 95 ms
17,152 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 129 ms
26,188 KB
testcase_07 AC 39 ms
16,000 KB
testcase_08 AC 77 ms
18,688 KB
testcase_09 AC 132 ms
26,368 KB
testcase_10 AC 107 ms
23,268 KB
testcase_11 AC 95 ms
21,868 KB
testcase_12 AC 96 ms
22,400 KB
testcase_13 AC 83 ms
21,632 KB
testcase_14 AC 80 ms
16,484 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 30 ms
11,008 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    w, h, n = [int(input()) for i in range(3)]

    soot, no = [0] * w, [0] * h
    for i in range(n):
        s, k = map(int, input().split())
        soot[s-1] = no[k-1] = 1

    ans, used_no = 0, sum(no)
    
    for i in range(w):
        if soot[i]:
            ans += h
        else:
            ans += used_no

    print(ans-n)


if __name__ == '__main__':
    main()
0