結果

問題 No.2780 The Bottle Imp
ユーザー detteiuudetteiuu
提出日時 2024-06-07 22:12:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-06-08 10:31:03
合計ジャッジ時間 6,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 38 ms
53,504 KB
testcase_05 AC 37 ms
53,504 KB
testcase_06 AC 37 ms
53,504 KB
testcase_07 AC 124 ms
81,792 KB
testcase_08 AC 143 ms
82,304 KB
testcase_09 AC 144 ms
82,304 KB
testcase_10 AC 155 ms
82,176 KB
testcase_11 AC 127 ms
81,664 KB
testcase_12 AC 156 ms
86,400 KB
testcase_13 AC 156 ms
85,504 KB
testcase_14 AC 98 ms
77,568 KB
testcase_15 AC 97 ms
77,824 KB
testcase_16 AC 96 ms
77,440 KB
testcase_17 AC 96 ms
77,824 KB
testcase_18 AC 94 ms
77,696 KB
testcase_19 AC 91 ms
77,696 KB
testcase_20 AC 90 ms
77,568 KB
testcase_21 AC 89 ms
77,568 KB
testcase_22 AC 111 ms
78,848 KB
testcase_23 AC 118 ms
78,592 KB
testcase_24 AC 147 ms
80,768 KB
testcase_25 AC 156 ms
83,712 KB
testcase_26 AC 114 ms
79,616 KB
testcase_27 AC 122 ms
84,608 KB
testcase_28 AC 117 ms
84,352 KB
testcase_29 WA -
testcase_30 AC 110 ms
81,024 KB
testcase_31 AC 157 ms
87,552 KB
testcase_32 AC 74 ms
77,184 KB
testcase_33 AC 155 ms
88,832 KB
testcase_34 AC 155 ms
88,576 KB
testcase_35 AC 78 ms
77,056 KB
testcase_36 AC 40 ms
53,632 KB
testcase_37 WA -
testcase_38 AC 77 ms
77,184 KB
testcase_39 AC 147 ms
86,016 KB
testcase_40 AC 147 ms
86,016 KB
testcase_41 AC 149 ms
86,016 KB
testcase_42 AC 41 ms
53,632 KB
testcase_43 AC 38 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
G = [[] for _ in range(N)]
zero = 0
for i in range(N):
    MA = list(map(int, input().split()))
    M = MA[0]
    if M == 0:
        zero += 1
    A = MA[1:]
    for j in range(M):
        G[i].append(A[j]-1)

visited = [False]*N
visited[0] = True
que = deque()
que.append(0)
while que:
    n = que.popleft()
    for v in G[n]:
        if not visited[v]:
            visited[v] = True
            que.append(v)

if sum(visited) < N or zero >= 2:
    print("No")
else:
    print("Yes")
0