結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 12:04:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-06-01 17:20:08
合計ジャッジ時間 19,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
13,824 KB
testcase_02 AC 89 ms
13,696 KB
testcase_03 AC 119 ms
13,824 KB
testcase_04 WA -
testcase_05 AC 121 ms
13,952 KB
testcase_06 AC 119 ms
13,824 KB
testcase_07 AC 88 ms
13,696 KB
testcase_08 AC 118 ms
13,824 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 86 ms
13,696 KB
testcase_12 AC 124 ms
13,824 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 86 ms
13,824 KB
testcase_16 AC 91 ms
13,696 KB
testcase_17 AC 87 ms
13,824 KB
testcase_18 AC 87 ms
13,952 KB
testcase_19 AC 939 ms
52,992 KB
testcase_20 AC 898 ms
53,120 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 925 ms
53,248 KB
testcase_24 WA -
testcase_25 AC 882 ms
45,696 KB
testcase_26 AC 878 ms
45,952 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 921 ms
53,120 KB
testcase_31 WA -
testcase_32 AC 883 ms
52,608 KB
testcase_33 AC 857 ms
52,608 KB
testcase_34 AC 884 ms
51,840 KB
testcase_35 AC 719 ms
45,184 KB
testcase_36 AC 477 ms
33,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[list(map(int, input().split())) for i in range(n)]

M=200001
X=[0]*M
Y=[0]*M
for x, y in a:
    X[x]+=1
    Y[y]+=1
c=0
for i in range(M):
    c+=abs(X[i]-Y[i])
if c==0:
    ans=0
    for i in range(M):
        if X[i]>0 or Y[i]>0:
            ans+=1
    print(ans)
elif c==1:
    print(1)
else:
    print(0)
0