結果

問題 No.1605 Matrix Shape
ユーザー hir355hir355
提出日時 2021-07-16 21:34:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 115,964 KB
最終ジャッジ日時 2024-07-06 08:31:16
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
67,328 KB
testcase_01 AC 45 ms
67,968 KB
testcase_02 AC 47 ms
67,456 KB
testcase_03 AC 47 ms
67,712 KB
testcase_04 WA -
testcase_05 AC 45 ms
67,328 KB
testcase_06 AC 44 ms
68,000 KB
testcase_07 AC 44 ms
67,584 KB
testcase_08 AC 47 ms
67,456 KB
testcase_09 AC 46 ms
67,712 KB
testcase_10 AC 45 ms
67,968 KB
testcase_11 AC 42 ms
66,688 KB
testcase_12 AC 45 ms
67,328 KB
testcase_13 AC 48 ms
68,736 KB
testcase_14 AC 45 ms
67,328 KB
testcase_15 AC 46 ms
67,712 KB
testcase_16 AC 45 ms
67,968 KB
testcase_17 AC 43 ms
66,816 KB
testcase_18 AC 41 ms
66,816 KB
testcase_19 AC 279 ms
115,964 KB
testcase_20 AC 237 ms
99,108 KB
testcase_21 AC 242 ms
99,364 KB
testcase_22 WA -
testcase_23 AC 277 ms
115,508 KB
testcase_24 AC 283 ms
115,608 KB
testcase_25 AC 164 ms
91,828 KB
testcase_26 AC 167 ms
91,684 KB
testcase_27 AC 168 ms
92,032 KB
testcase_28 WA -
testcase_29 AC 164 ms
91,896 KB
testcase_30 AC 247 ms
101,068 KB
testcase_31 AC 248 ms
101,592 KB
testcase_32 AC 211 ms
95,116 KB
testcase_33 WA -
testcase_34 AC 168 ms
94,808 KB
testcase_35 AC 238 ms
107,396 KB
testcase_36 AC 165 ms
99,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MAX = 2 * 10 ** 5
n = int(input())
g = [[] for _ in range(MAX + 1)]
inv = [0] * (MAX + 1)
out = [0] * (MAX + 1)
s = set()
for i in range(n):
    h, w = map(int, input().split())
    s.add(h)
    s.add(w)
    g[h].append(w)
    inv[w] += 1
    out[h] += 1
f1 = 0
f2 = 0
for i in range(MAX + 1):
    if inv[i] + 1 == out[i]:
        f1 += 1
    elif out[i] + 1 == inv[i]:
        f2 += 1
    elif inv[i] == out[i]:
        continue
    else:
        print(0)
        exit(0)
if f1 == f2 == 0:
    print(len(s))
elif f1 == f2 == 1:
    print(1)
else:
    print(0)
0