結果

問題 No.1479 Matrix Eraser
ユーザー trineutrontrineutron
提出日時 2021-04-16 20:49:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 156,948 KB
最終ジャッジ日時 2024-07-02 23:28:47
合計ジャッジ時間 20,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 121 ms
27,216 KB
testcase_08 AC 214 ms
39,572 KB
testcase_09 AC 464 ms
69,504 KB
testcase_10 AC 860 ms
107,212 KB
testcase_11 AC 544 ms
77,920 KB
testcase_12 AC 148 ms
31,592 KB
testcase_13 AC 210 ms
39,736 KB
testcase_14 AC 157 ms
32,256 KB
testcase_15 AC 53 ms
15,616 KB
testcase_16 AC 168 ms
33,932 KB
testcase_17 AC 1,165 ms
133,388 KB
testcase_18 AC 1,170 ms
133,356 KB
testcase_19 AC 1,174 ms
133,368 KB
testcase_20 AC 1,196 ms
133,496 KB
testcase_21 AC 1,134 ms
133,544 KB
testcase_22 AC 1,128 ms
133,400 KB
testcase_23 AC 1,156 ms
133,220 KB
testcase_24 AC 1,133 ms
133,404 KB
testcase_25 AC 1,160 ms
133,308 KB
testcase_26 AC 1,160 ms
133,636 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 208 ms
13,312 KB
testcase_33 AC 210 ms
13,056 KB
testcase_34 AC 209 ms
13,056 KB
testcase_35 AC 207 ms
13,056 KB
testcase_36 AC 204 ms
13,184 KB
testcase_37 AC 214 ms
13,056 KB
testcase_38 AC 285 ms
53,248 KB
testcase_39 AC 1,234 ms
156,948 KB
testcase_40 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
a = [list(map(int, input().split())) for i in range(h)]
m_row = dict()
m_column = dict()
for i in range(h):
    for j in range(w):
        if a[i][j] not in m_row:
            m_row[a[i][j]] = set()
        if a[i][j] not in m_column:
            m_column[a[i][j]] = set()
        m_row[a[i][j]].add(i)
        m_column[a[i][j]].add(j)
ans = 0
for i in m_row:
    if i == 0:
        continue
    ans += min(len(m_row[i]), len(m_column[i]))
print(ans)
0