結果

問題 No.1479 Matrix Eraser
ユーザー eijiroueijirou
提出日時 2021-04-16 21:43:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 248,184 KB
最終ジャッジ日時 2024-07-03 01:09:38
合計ジャッジ時間 9,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 85 ms
89,216 KB
testcase_08 AC 105 ms
94,848 KB
testcase_09 AC 201 ms
130,560 KB
testcase_10 AC 349 ms
172,476 KB
testcase_11 AC 247 ms
153,808 KB
testcase_12 AC 86 ms
90,260 KB
testcase_13 AC 134 ms
116,608 KB
testcase_14 AC 89 ms
90,240 KB
testcase_15 AC 52 ms
69,048 KB
testcase_16 AC 92 ms
91,648 KB
testcase_17 AC 412 ms
190,828 KB
testcase_18 AC 420 ms
191,012 KB
testcase_19 AC 455 ms
213,084 KB
testcase_20 AC 458 ms
212,948 KB
testcase_21 AC 430 ms
190,948 KB
testcase_22 AC 430 ms
192,320 KB
testcase_23 AC 431 ms
190,684 KB
testcase_24 AC 415 ms
192,040 KB
testcase_25 AC 449 ms
213,008 KB
testcase_26 AC 447 ms
213,348 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 83 ms
77,696 KB
testcase_33 AC 82 ms
77,512 KB
testcase_34 AC 80 ms
77,920 KB
testcase_35 AC 81 ms
77,440 KB
testcase_36 AC 85 ms
77,644 KB
testcase_37 AC 82 ms
77,904 KB
testcase_38 AC 126 ms
89,036 KB
testcase_39 AC 390 ms
248,184 KB
testcase_40 AC 39 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = stdin.readline

def main():
    h, w = map(int, input().split())
    a = [list(map(int, input().split())) for _ in range(h)]

    rows = dict()
    columns = dict()
    for i in range(h):
        for j in range(w):
            if a[i][j] in rows:
                rows[a[i][j]].add(i)
                columns[a[i][j]].add(j)
            else:
                rows[a[i][j]] = {i}
                columns[a[i][j]] = {j}
    
    ans = 0
    for key in rows.keys():
        if key:
            ans += min(len(rows[key]), len(columns[key]))
    print(ans)

main()
0