結果

問題 No.1605 Matrix Shape
ユーザー H3PO4H3PO4
提出日時 2021-07-16 21:40:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,708 KB
最終ジャッジ日時 2024-07-06 08:39:59
合計ジャッジ時間 14,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
12,288 KB
testcase_01 AC 43 ms
12,288 KB
testcase_02 AC 42 ms
12,288 KB
testcase_03 AC 41 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 40 ms
12,288 KB
testcase_06 AC 40 ms
12,288 KB
testcase_07 AC 39 ms
12,288 KB
testcase_08 AC 40 ms
12,416 KB
testcase_09 AC 40 ms
12,288 KB
testcase_10 AC 42 ms
12,288 KB
testcase_11 AC 42 ms
12,288 KB
testcase_12 AC 48 ms
12,288 KB
testcase_13 AC 41 ms
12,288 KB
testcase_14 AC 42 ms
12,416 KB
testcase_15 AC 40 ms
12,288 KB
testcase_16 AC 40 ms
12,288 KB
testcase_17 AC 41 ms
12,288 KB
testcase_18 AC 41 ms
12,288 KB
testcase_19 AC 756 ms
29,532 KB
testcase_20 AC 731 ms
20,868 KB
testcase_21 AC 741 ms
21,024 KB
testcase_22 WA -
testcase_23 AC 746 ms
29,708 KB
testcase_24 AC 760 ms
29,596 KB
testcase_25 AC 666 ms
12,288 KB
testcase_26 AC 712 ms
12,416 KB
testcase_27 AC 692 ms
12,288 KB
testcase_28 WA -
testcase_29 AC 677 ms
12,288 KB
testcase_30 AC 737 ms
20,868 KB
testcase_31 AC 754 ms
20,976 KB
testcase_32 AC 698 ms
15,928 KB
testcase_33 WA -
testcase_34 AC 675 ms
12,288 KB
testcase_35 AC 608 ms
29,540 KB
testcase_36 AC 400 ms
21,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
MAX = 2 * 10 ** 5
deg = [0] * MAX
st = set()
for _ in range(N):
    H, W = (int(x) - 1 for x in input().split())
    deg[H] += 1
    deg[W] -= 1
    st.add(H)
    st.add(W)

ct = Counter(deg)
if ct[0] == MAX:
    print(len(st))
elif ct[0] == MAX - 2 and ct[-1] == ct[1] == 1:
    print(1)
else:
    print(0)
0