結果

問題 No.2780 The Bottle Imp
ユーザー 寝癖寝癖
提出日時 2024-06-07 22:00:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 90,308 KB
最終ジャッジ日時 2024-06-08 10:30:10
合計ジャッジ時間 6,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 42 ms
53,248 KB
testcase_04 AC 43 ms
53,120 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 127 ms
83,200 KB
testcase_08 AC 150 ms
83,072 KB
testcase_09 AC 145 ms
83,328 KB
testcase_10 AC 144 ms
83,072 KB
testcase_11 AC 125 ms
83,456 KB
testcase_12 AC 165 ms
89,400 KB
testcase_13 AC 163 ms
89,012 KB
testcase_14 AC 107 ms
78,208 KB
testcase_15 AC 111 ms
78,208 KB
testcase_16 AC 106 ms
77,824 KB
testcase_17 AC 106 ms
77,824 KB
testcase_18 AC 105 ms
77,952 KB
testcase_19 AC 105 ms
78,208 KB
testcase_20 AC 105 ms
77,952 KB
testcase_21 AC 105 ms
77,952 KB
testcase_22 AC 111 ms
78,464 KB
testcase_23 AC 108 ms
77,824 KB
testcase_24 AC 135 ms
82,432 KB
testcase_25 AC 164 ms
85,248 KB
testcase_26 AC 114 ms
81,024 KB
testcase_27 AC 131 ms
82,432 KB
testcase_28 AC 129 ms
82,432 KB
testcase_29 WA -
testcase_30 AC 115 ms
81,152 KB
testcase_31 AC 178 ms
90,052 KB
testcase_32 AC 73 ms
76,160 KB
testcase_33 AC 178 ms
90,304 KB
testcase_34 AC 178 ms
90,308 KB
testcase_35 AC 90 ms
77,184 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 92 ms
77,056 KB
testcase_39 AC 158 ms
87,120 KB
testcase_40 AC 157 ms
86,860 KB
testcase_41 WA -
testcase_42 AC 42 ms
53,376 KB
testcase_43 AC 45 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
M, A = [], []
for _ in range(N):
    m, *a = map(lambda x: int(x)-1, input().split())
    M.append(m)
    A.append(a)

q = deque([0])
dist = [-1]*N
dist[0] = 0

while q:
    v = q.popleft()
    for u in A[v]:
        if dist[u] == -1:
            dist[u] = dist[v] + 1
            q.append(u)

if -1 in dist:
    print('No')
else:
    print('Yes')
0