結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 12:04:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-12-22 04:02:29
合計ジャッジ時間 20,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 124 ms
13,568 KB
testcase_02 AC 88 ms
13,568 KB
testcase_03 AC 123 ms
13,696 KB
testcase_04 WA -
testcase_05 AC 123 ms
13,568 KB
testcase_06 AC 125 ms
13,568 KB
testcase_07 AC 91 ms
13,696 KB
testcase_08 AC 128 ms
13,824 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 88 ms
13,696 KB
testcase_12 AC 117 ms
13,568 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 95 ms
13,696 KB
testcase_16 AC 91 ms
13,696 KB
testcase_17 AC 91 ms
13,568 KB
testcase_18 AC 90 ms
13,824 KB
testcase_19 AC 957 ms
52,992 KB
testcase_20 AC 982 ms
52,864 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 936 ms
52,992 KB
testcase_24 WA -
testcase_25 AC 975 ms
45,568 KB
testcase_26 AC 978 ms
45,824 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 944 ms
53,120 KB
testcase_31 WA -
testcase_32 AC 926 ms
52,480 KB
testcase_33 AC 899 ms
52,480 KB
testcase_34 AC 918 ms
51,584 KB
testcase_35 AC 727 ms
45,184 KB
testcase_36 AC 488 ms
33,280 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