結果

問題 No.1605 Matrix Shape
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-17 12:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 822 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 282,204 KB
最終ジャッジ日時 2024-07-06 23:31:41
合計ジャッジ時間 10,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
71,636 KB
testcase_01 AC 47 ms
71,968 KB
testcase_02 AC 43 ms
67,912 KB
testcase_03 AC 53 ms
71,440 KB
testcase_04 AC 45 ms
68,640 KB
testcase_05 AC 49 ms
72,988 KB
testcase_06 AC 48 ms
71,856 KB
testcase_07 AC 42 ms
67,804 KB
testcase_08 AC 45 ms
71,700 KB
testcase_09 AC 48 ms
71,668 KB
testcase_10 AC 46 ms
71,164 KB
testcase_11 AC 47 ms
71,876 KB
testcase_12 AC 49 ms
72,108 KB
testcase_13 AC 48 ms
72,920 KB
testcase_14 AC 48 ms
72,208 KB
testcase_15 AC 47 ms
71,972 KB
testcase_16 AC 47 ms
71,712 KB
testcase_17 AC 45 ms
73,136 KB
testcase_18 AC 49 ms
72,088 KB
testcase_19 AC 822 ms
282,204 KB
testcase_20 AC 672 ms
194,360 KB
testcase_21 AC 518 ms
186,216 KB
testcase_22 AC 554 ms
193,836 KB
testcase_23 AC 741 ms
229,336 KB
testcase_24 AC 735 ms
208,372 KB
testcase_25 AC 176 ms
99,368 KB
testcase_26 AC 185 ms
99,100 KB
testcase_27 AC 192 ms
102,348 KB
testcase_28 AC 183 ms
98,832 KB
testcase_29 AC 185 ms
98,636 KB
testcase_30 AC 361 ms
106,492 KB
testcase_31 AC 359 ms
106,512 KB
testcase_32 AC 398 ms
128,664 KB
testcase_33 AC 387 ms
136,884 KB
testcase_34 AC 187 ms
101,664 KB
testcase_35 AC 546 ms
184,420 KB
testcase_36 AC 365 ms
182,892 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(list(s)[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(len(s))
elif tmp == 2: print(1)
else: print(0)
0