結果

問題 No.2780 The Bottle Imp
ユーザー noriocnorioc
提出日時 2024-06-07 23:06:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 198,684 KB
最終ジャッジ日時 2024-06-08 10:37:36
合計ジャッジ時間 7,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 41 ms
53,248 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 139 ms
83,200 KB
testcase_08 AC 242 ms
96,896 KB
testcase_09 AC 240 ms
99,716 KB
testcase_10 AC 258 ms
97,024 KB
testcase_11 AC 145 ms
83,584 KB
testcase_12 AC 177 ms
88,800 KB
testcase_13 AC 184 ms
88,960 KB
testcase_14 AC 145 ms
86,656 KB
testcase_15 AC 130 ms
85,760 KB
testcase_16 AC 138 ms
90,752 KB
testcase_17 AC 140 ms
87,808 KB
testcase_18 AC 131 ms
85,248 KB
testcase_19 AC 140 ms
85,248 KB
testcase_20 AC 130 ms
85,504 KB
testcase_21 AC 126 ms
85,632 KB
testcase_22 AC 145 ms
83,840 KB
testcase_23 AC 138 ms
86,316 KB
testcase_24 AC 210 ms
88,416 KB
testcase_25 AC 255 ms
95,104 KB
testcase_26 AC 135 ms
81,620 KB
testcase_27 AC 135 ms
83,968 KB
testcase_28 AC 137 ms
84,224 KB
testcase_29 WA -
testcase_30 AC 121 ms
82,560 KB
testcase_31 AC 202 ms
94,848 KB
testcase_32 AC 89 ms
77,184 KB
testcase_33 AC 361 ms
198,684 KB
testcase_34 AC 354 ms
198,560 KB
testcase_35 AC 89 ms
77,016 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 85 ms
77,184 KB
testcase_39 AC 226 ms
121,804 KB
testcase_40 AC 224 ms
121,856 KB
testcase_41 WA -
testcase_42 AC 43 ms
53,888 KB
testcase_43 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
sys.setrecursionlimit(10 ** 6)

N = int(input())
adj = defaultdict(list)
for i in range(N):
    M, *A = list(map(int, input().split()))
    for a in A:
        adj[i].append(a-1)


def dfs(v, used):
    if used[v]: return
    used[v] = True

    for to in adj[v]:
        dfs(to, used)


used = [False] * N
dfs(0, used)
if sum(used) == N:
    print('Yes')
else:
    print('No')
0