結果

問題 No.1605 Matrix Shape
ユーザー convexineqconvexineq
提出日時 2021-07-16 21:46:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-06 08:47:22
合計ジャッジ時間 4,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,776 KB
testcase_01 AC 46 ms
64,256 KB
testcase_02 AC 37 ms
60,416 KB
testcase_03 AC 43 ms
64,384 KB
testcase_04 WA -
testcase_05 AC 43 ms
64,512 KB
testcase_06 AC 43 ms
64,256 KB
testcase_07 AC 37 ms
59,904 KB
testcase_08 AC 43 ms
64,384 KB
testcase_09 AC 37 ms
60,032 KB
testcase_10 AC 37 ms
60,416 KB
testcase_11 AC 37 ms
59,904 KB
testcase_12 AC 43 ms
64,256 KB
testcase_13 AC 38 ms
60,288 KB
testcase_14 AC 37 ms
60,288 KB
testcase_15 AC 37 ms
59,776 KB
testcase_16 AC 36 ms
60,416 KB
testcase_17 AC 36 ms
59,904 KB
testcase_18 AC 36 ms
60,288 KB
testcase_19 AC 156 ms
78,976 KB
testcase_20 AC 152 ms
79,020 KB
testcase_21 AC 147 ms
79,104 KB
testcase_22 WA -
testcase_23 AC 161 ms
79,104 KB
testcase_24 AC 150 ms
79,000 KB
testcase_25 AC 138 ms
79,104 KB
testcase_26 AC 139 ms
79,488 KB
testcase_27 AC 136 ms
79,232 KB
testcase_28 WA -
testcase_29 AC 136 ms
78,976 KB
testcase_30 AC 154 ms
78,956 KB
testcase_31 AC 150 ms
79,360 KB
testcase_32 AC 151 ms
79,360 KB
testcase_33 WA -
testcase_34 AC 142 ms
80,768 KB
testcase_35 AC 137 ms
79,232 KB
testcase_36 AC 109 ms
79,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
N = 2*10**5+1
ind = [0]*N
out = [0]*N
for _ in range(n):
    h,w = map(int,input().split())
    ind[h] += 1
    out[w] += 1
nonzero = [i for i in range(N) if ind[i] != out[i]]
if len(nonzero) == 0:
    ans = sum(ind[i]+out[i] > 0 for i in range(N))
elif len(nonzero) == 2:
    i,j = nonzero
    if abs(ind[i] - out[i]) == 1:
        ans = 1
    else:
        ans = 0
else:
    ans = 0
print(ans)
0