結果

問題 No.1605 Matrix Shape
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-17 11:41:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 282,240 KB
最終ジャッジ日時 2024-07-06 23:12:20
合計ジャッジ時間 12,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
71,424 KB
testcase_01 WA -
testcase_02 AC 48 ms
66,944 KB
testcase_03 WA -
testcase_04 AC 49 ms
66,944 KB
testcase_05 AC 55 ms
71,680 KB
testcase_06 WA -
testcase_07 AC 50 ms
67,072 KB
testcase_08 WA -
testcase_09 AC 54 ms
71,808 KB
testcase_10 AC 55 ms
71,424 KB
testcase_11 AC 55 ms
70,784 KB
testcase_12 WA -
testcase_13 AC 54 ms
71,040 KB
testcase_14 AC 55 ms
71,168 KB
testcase_15 AC 55 ms
71,424 KB
testcase_16 AC 55 ms
70,784 KB
testcase_17 AC 55 ms
71,492 KB
testcase_18 AC 55 ms
71,552 KB
testcase_19 AC 978 ms
282,240 KB
testcase_20 WA -
testcase_21 AC 835 ms
193,024 KB
testcase_22 AC 716 ms
193,664 KB
testcase_23 WA -
testcase_24 AC 896 ms
210,176 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 208 ms
98,816 KB
testcase_28 AC 204 ms
98,904 KB
testcase_29 AC 207 ms
98,844 KB
testcase_30 WA -
testcase_31 AC 484 ms
104,576 KB
testcase_32 WA -
testcase_33 AC 499 ms
126,720 KB
testcase_34 WA -
testcase_35 AC 1,007 ms
263,100 KB
testcase_36 AC 467 ms
182,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)
n = int(input())
cnt = [0 for i in range(2 * 10 ** 5)]
G = [[] for i in range(2 * 10 ** 5)]
s = set()
for _ in range(n):
    h, w = map(int, input().split())
    G[h - 1].append(w - 1)
    G[w - 1].append(h - 1)
    cnt[h - 1] += 1
    cnt[w - 1] -= 1
    s.add(h - 1)
    s.add(w - 1)
vis = [0] * (2 * 10 ** 5)
def dfs(v):
    vis[v] = 1
    for u in G[v]:
        if not vis[u]: dfs(u)
dfs(0)
if not all(vis[i] for i in s): exit(print(0))
tmp = sum(abs(cnt[i]) for i in range(2 * 10 ** 5)) 
if tmp == 0: print(n)
elif tmp == 2: print(1)
else: print(0)
0