結果

問題 No.2780 The Bottle Imp
ユーザー tkykwtnbtkykwtnb
提出日時 2024-06-07 22:25:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-06-08 10:33:47
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 128 ms
80,512 KB
testcase_08 AC 140 ms
81,024 KB
testcase_09 AC 134 ms
80,896 KB
testcase_10 AC 140 ms
80,768 KB
testcase_11 AC 121 ms
81,024 KB
testcase_12 AC 157 ms
84,224 KB
testcase_13 AC 155 ms
84,480 KB
testcase_14 AC 102 ms
78,080 KB
testcase_15 AC 117 ms
77,824 KB
testcase_16 AC 101 ms
77,568 KB
testcase_17 AC 102 ms
77,568 KB
testcase_18 AC 114 ms
77,696 KB
testcase_19 AC 102 ms
77,696 KB
testcase_20 AC 102 ms
77,696 KB
testcase_21 AC 113 ms
77,568 KB
testcase_22 AC 113 ms
77,824 KB
testcase_23 AC 104 ms
78,336 KB
testcase_24 AC 129 ms
80,128 KB
testcase_25 AC 149 ms
82,816 KB
testcase_26 AC 111 ms
78,848 KB
testcase_27 AC 121 ms
85,120 KB
testcase_28 AC 122 ms
85,248 KB
testcase_29 WA -
testcase_30 AC 109 ms
79,616 KB
testcase_31 AC 147 ms
84,608 KB
testcase_32 AC 68 ms
76,160 KB
testcase_33 AC 160 ms
85,760 KB
testcase_34 AC 167 ms
86,016 KB
testcase_35 AC 90 ms
77,184 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 103 ms
76,672 KB
testcase_39 AC 142 ms
87,680 KB
testcase_40 AC 143 ms
87,424 KB
testcase_41 WA -
testcase_42 AC 36 ms
51,712 KB
testcase_43 AC 41 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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={0}
while Q:
    p=Q.pop()
    vis[p]=1
    for n in G[p]:
        if vis[n]==0:Q.add(n)
if sum(vis)==N:print("Yes")
else:print("No")
0