結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 11:59:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-12-22 04:01:58
合計ジャッジ時間 7,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,416 KB
testcase_01 AC 44 ms
60,672 KB
testcase_02 AC 47 ms
61,056 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 45 ms
60,544 KB
testcase_07 AC 44 ms
60,672 KB
testcase_08 WA -
testcase_09 AC 44 ms
60,800 KB
testcase_10 AC 46 ms
60,928 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 WA -
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 46 ms
60,544 KB
testcase_15 AC 46 ms
60,928 KB
testcase_16 AC 44 ms
60,800 KB
testcase_17 AC 45 ms
60,544 KB
testcase_18 AC 45 ms
60,544 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 242 ms
99,200 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 250 ms
99,424 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 243 ms
99,508 KB
testcase_28 WA -
testcase_29 AC 241 ms
99,200 KB
testcase_30 WA -
testcase_31 AC 249 ms
99,200 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 213 ms
95,360 KB
testcase_36 AC 161 ms
89,804 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])
c//=2
if c==0:
    print(2)
elif c==1:
    print(1)
else:
    print(0)
0