結果

問題 No.2780 The Bottle Imp
ユーザー イルカイルカ
提出日時 2024-06-11 08:58:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,716 KB
最終ジャッジ日時 2024-06-11 08:58:27
合計ジャッジ時間 8,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 46 ms
53,376 KB
testcase_07 AC 135 ms
83,928 KB
testcase_08 AC 165 ms
84,884 KB
testcase_09 AC 160 ms
85,156 KB
testcase_10 AC 163 ms
85,040 KB
testcase_11 AC 130 ms
84,376 KB
testcase_12 AC 180 ms
90,300 KB
testcase_13 AC 186 ms
90,140 KB
testcase_14 AC 114 ms
82,048 KB
testcase_15 AC 124 ms
81,664 KB
testcase_16 AC 111 ms
81,920 KB
testcase_17 AC 125 ms
81,664 KB
testcase_18 AC 116 ms
82,176 KB
testcase_19 AC 120 ms
81,920 KB
testcase_20 AC 117 ms
82,048 KB
testcase_21 AC 122 ms
83,200 KB
testcase_22 AC 122 ms
80,000 KB
testcase_23 AC 124 ms
80,384 KB
testcase_24 AC 148 ms
82,976 KB
testcase_25 AC 192 ms
87,428 KB
testcase_26 AC 122 ms
81,152 KB
testcase_27 AC 136 ms
84,608 KB
testcase_28 AC 134 ms
84,224 KB
testcase_29 WA -
testcase_30 AC 123 ms
82,560 KB
testcase_31 AC 181 ms
89,992 KB
testcase_32 AC 81 ms
78,848 KB
testcase_33 AC 195 ms
91,324 KB
testcase_34 AC 188 ms
91,716 KB
testcase_35 AC 98 ms
77,696 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 100 ms
77,696 KB
testcase_39 AC 165 ms
89,112 KB
testcase_40 AC 170 ms
89,372 KB
testcase_41 WA -
testcase_42 AC 46 ms
53,376 KB
testcase_43 AC 45 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
edge = defaultdict(list)
for i in range(1,N+1):
    A = list(map(int, input().split()))[1:]
    edge[i] = A
  

def dfs(start):
    todo = [start,]
    seen = [False] * (N+1)

    while todo:
        tgt = todo.pop()
        if seen[tgt]:
            continue
        seen[tgt] = True

        for next in edge[tgt]:
            todo.append(next)
    
    return seen

connected = dfs(1)
if(all(connected[1:])):
    print("Yes")
else:
    print("No")
0