結果

問題 No.2780 The Bottle Imp
ユーザー tkykwtnbtkykwtnb
提出日時 2024-06-07 22:10:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 298,072 KB
最終ジャッジ日時 2024-06-08 10:31:02
合計ジャッジ時間 9,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,752 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,248 KB
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 146 ms
81,152 KB
testcase_08 AC 170 ms
82,048 KB
testcase_09 AC 169 ms
81,024 KB
testcase_10 AC 170 ms
81,152 KB
testcase_11 AC 145 ms
80,768 KB
testcase_12 AC 191 ms
85,120 KB
testcase_13 AC 197 ms
84,992 KB
testcase_14 AC 142 ms
78,976 KB
testcase_15 AC 141 ms
78,848 KB
testcase_16 AC 140 ms
79,104 KB
testcase_17 AC 140 ms
78,720 KB
testcase_18 AC 143 ms
78,720 KB
testcase_19 AC 141 ms
78,976 KB
testcase_20 AC 140 ms
78,720 KB
testcase_21 AC 142 ms
79,104 KB
testcase_22 AC 128 ms
78,720 KB
testcase_23 AC 136 ms
78,208 KB
testcase_24 AC 167 ms
81,024 KB
testcase_25 AC 186 ms
83,072 KB
testcase_26 AC 128 ms
79,232 KB
testcase_27 AC 145 ms
84,864 KB
testcase_28 AC 145 ms
84,480 KB
testcase_29 WA -
testcase_30 AC 132 ms
80,512 KB
testcase_31 AC 197 ms
84,992 KB
testcase_32 AC 242 ms
76,800 KB
testcase_33 AC 200 ms
86,400 KB
testcase_34 AC 209 ms
86,528 KB
testcase_35 AC 112 ms
77,440 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 111 ms
77,184 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
G=[[] for _ in range(N)]
for i in range(N):
    T=list(map(int,input().split()))
    G[i].extend(list(map(lambda x:x-1, T[1:])))
vis=[0 for _ in range(N)]
Q=deque([0])
while Q:
    p=Q.popleft()
    vis[p]=1
    for n in G[p]:
        if vis[n]==0:Q.append(n)
if sum(vis)==N:print("Yes")
else:print("No")
0