結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 136 ms
81,792 KB
testcase_08 AC 153 ms
82,176 KB
testcase_09 AC 147 ms
82,148 KB
testcase_10 AC 154 ms
82,560 KB
testcase_11 AC 135 ms
81,664 KB
testcase_12 AC 182 ms
86,016 KB
testcase_13 AC 164 ms
85,600 KB
testcase_14 AC 89 ms
77,440 KB
testcase_15 AC 91 ms
77,568 KB
testcase_16 AC 89 ms
77,440 KB
testcase_17 AC 94 ms
77,808 KB
testcase_18 AC 90 ms
77,440 KB
testcase_19 AC 90 ms
77,440 KB
testcase_20 AC 89 ms
77,440 KB
testcase_21 AC 90 ms
77,788 KB
testcase_22 AC 115 ms
79,044 KB
testcase_23 AC 94 ms
77,716 KB
testcase_24 AC 143 ms
80,776 KB
testcase_25 AC 170 ms
83,584 KB
testcase_26 AC 107 ms
79,232 KB
testcase_27 AC 124 ms
84,480 KB
testcase_28 AC 122 ms
84,340 KB
testcase_29 WA -
testcase_30 AC 110 ms
81,004 KB
testcase_31 AC 175 ms
87,168 KB
testcase_32 AC 72 ms
77,196 KB
testcase_33 AC 170 ms
88,836 KB
testcase_34 AC 176 ms
88,320 KB
testcase_35 AC 76 ms
77,056 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 76 ms
77,312 KB
testcase_39 AC 149 ms
86,244 KB
testcase_40 AC 153 ms
85,760 KB
testcase_41 WA -
testcase_42 AC 41 ms
53,412 KB
testcase_43 AC 41 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
G = [[] for _ in range(N)]
for i in range(N):
    MA = list(map(int, input().split()))
    M = MA[0]
    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:
    print("Yes")
else:
    print("No")
0