結果

問題 No.2780 The Bottle Imp
ユーザー dp_ijkdp_ijk
提出日時 2024-06-18 00:35:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 88,984 KB
最終ジャッジ日時 2024-06-18 00:35:14
合計ジャッジ時間 9,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 40 ms
53,628 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 40 ms
54,144 KB
testcase_07 AC 131 ms
82,608 KB
testcase_08 AC 162 ms
82,600 KB
testcase_09 AC 148 ms
83,088 KB
testcase_10 AC 154 ms
83,088 KB
testcase_11 AC 124 ms
81,608 KB
testcase_12 AC 160 ms
87,488 KB
testcase_13 AC 168 ms
87,788 KB
testcase_14 AC 106 ms
78,168 KB
testcase_15 AC 105 ms
78,184 KB
testcase_16 AC 101 ms
78,028 KB
testcase_17 AC 104 ms
78,184 KB
testcase_18 AC 101 ms
78,228 KB
testcase_19 AC 131 ms
78,340 KB
testcase_20 AC 106 ms
77,896 KB
testcase_21 AC 102 ms
78,128 KB
testcase_22 AC 110 ms
78,416 KB
testcase_23 AC 122 ms
78,244 KB
testcase_24 AC 135 ms
81,264 KB
testcase_25 AC 167 ms
84,764 KB
testcase_26 AC 109 ms
80,000 KB
testcase_27 AC 159 ms
83,476 KB
testcase_28 AC 132 ms
83,744 KB
testcase_29 WA -
testcase_30 AC 109 ms
80,916 KB
testcase_31 AC 204 ms
87,552 KB
testcase_32 AC 62 ms
76,088 KB
testcase_33 AC 183 ms
88,900 KB
testcase_34 AC 199 ms
88,984 KB
testcase_35 AC 88 ms
76,916 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 82 ms
77,284 KB
testcase_39 AC 168 ms
86,408 KB
testcase_40 AC 171 ms
86,556 KB
testcase_41 WA -
testcase_42 AC 41 ms
53,892 KB
testcase_43 AC 39 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float("INF")
N = int(input())
G = [[] for _ in range(N)]
for v in range(N):
   M, *A = map(int, input().split())
   G[v] = [a-1 for a in A]


def bfs(G, s):
   from collections import deque
   N = len(G)
   dist = [INF]*N
   Q = deque([s])
   dist[s] = 0
   while Q:
      v = Q.popleft()
      for a in G[v]:
         if dist[a] != INF:
            continue
         Q.append(a)
         dist[a] = dist[v] + 1
   return dist


dist = bfs(G, s=0)
ans = all(d != INF for d in dist)

if ans is True:
   print("Yes")
else:
   print("No")
0