結果

問題 No.1479 Matrix Eraser
ユーザー AEnAEn
提出日時 2023-06-02 00:29:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-06-08 21:48:59
合計ジャッジ時間 7,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 102 ms
76,928 KB
testcase_08 AC 109 ms
77,440 KB
testcase_09 AC 121 ms
77,952 KB
testcase_10 AC 165 ms
79,104 KB
testcase_11 AC 135 ms
78,080 KB
testcase_12 AC 100 ms
76,928 KB
testcase_13 AC 100 ms
77,440 KB
testcase_14 AC 101 ms
77,312 KB
testcase_15 AC 71 ms
69,120 KB
testcase_16 AC 102 ms
77,440 KB
testcase_17 AC 178 ms
79,616 KB
testcase_18 AC 176 ms
79,360 KB
testcase_19 AC 180 ms
79,232 KB
testcase_20 AC 172 ms
79,232 KB
testcase_21 AC 174 ms
78,976 KB
testcase_22 AC 181 ms
79,488 KB
testcase_23 AC 183 ms
79,616 KB
testcase_24 AC 181 ms
79,616 KB
testcase_25 AC 182 ms
79,616 KB
testcase_26 AC 178 ms
79,360 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 113 ms
78,976 KB
testcase_33 AC 112 ms
78,976 KB
testcase_34 AC 112 ms
78,976 KB
testcase_35 AC 111 ms
79,232 KB
testcase_36 AC 110 ms
78,976 KB
testcase_37 AC 98 ms
78,208 KB
testcase_38 AC 160 ms
79,232 KB
testcase_39 AC 163 ms
79,360 KB
testcase_40 AC 46 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

H,W = map(int, input().split())
A = [list(map(int,input().split())) for _ in range(H)]

res = 0
for i in range(H):
    d = defaultdict(list)
    for j in range(W):
        if A[i][j]!=0:
            d[A[i][j]].append(j)
    for key in d.keys():
        if len(d[key])>1:
            res += 1
            for x in d[key]:
                A[i][x] = 0

for i in range(W):
    d = defaultdict(list)
    for j in range(H):
        if A[j][i]!=0:
            d[A[j][i]].append(j)
    for key in d.keys():
        if len(d[key])>1:
            res += 1
            for y in d[key]:
                A[y][i] = 0

for i in range(H):
    res += W-A[i].count(0)
print(res)
0