結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,256 KB
testcase_01 AC 45 ms
61,108 KB
testcase_02 AC 45 ms
60,800 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 45 ms
62,384 KB
testcase_07 AC 45 ms
61,804 KB
testcase_08 WA -
testcase_09 AC 46 ms
62,232 KB
testcase_10 AC 45 ms
61,916 KB
testcase_11 AC 45 ms
60,988 KB
testcase_12 WA -
testcase_13 AC 45 ms
62,040 KB
testcase_14 AC 47 ms
61,376 KB
testcase_15 AC 46 ms
61,412 KB
testcase_16 AC 46 ms
61,676 KB
testcase_17 AC 46 ms
61,584 KB
testcase_18 AC 46 ms
61,648 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 242 ms
99,252 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 240 ms
99,432 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 241 ms
99,980 KB
testcase_28 WA -
testcase_29 AC 236 ms
99,548 KB
testcase_30 WA -
testcase_31 AC 246 ms
99,292 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 210 ms
95,336 KB
testcase_36 AC 162 ms
89,772 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