結果

問題 No.2780 The Bottle Imp
ユーザー manoto43manoto43
提出日時 2024-06-07 22:57:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,352 KB
最終ジャッジ日時 2024-06-08 10:36:56
合計ジャッジ時間 9,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 46 ms
53,760 KB
testcase_04 AC 45 ms
53,248 KB
testcase_05 AC 46 ms
53,504 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 299 ms
100,876 KB
testcase_08 AC 300 ms
100,376 KB
testcase_09 AC 276 ms
100,692 KB
testcase_10 AC 301 ms
98,700 KB
testcase_11 AC 306 ms
99,452 KB
testcase_12 AC 428 ms
120,712 KB
testcase_13 AC 420 ms
119,408 KB
testcase_14 AC 160 ms
83,584 KB
testcase_15 AC 169 ms
84,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 159 ms
83,584 KB
testcase_19 AC 158 ms
83,712 KB
testcase_20 AC 156 ms
83,584 KB
testcase_21 WA -
testcase_22 AC 194 ms
83,840 KB
testcase_23 AC 170 ms
83,840 KB
testcase_24 AC 276 ms
95,132 KB
testcase_25 AC 371 ms
108,840 KB
testcase_26 AC 251 ms
90,800 KB
testcase_27 AC 163 ms
95,488 KB
testcase_28 AC 163 ms
95,488 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 285 ms
120,860 KB
testcase_32 AC 98 ms
78,720 KB
testcase_33 AC 270 ms
123,352 KB
testcase_34 AC 261 ms
121,824 KB
testcase_35 AC 95 ms
77,408 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 96 ms
77,440 KB
testcase_39 AC 219 ms
111,308 KB
testcase_40 AC 221 ms
111,444 KB
testcase_41 WA -
testcase_42 AC 47 ms
53,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque

def main():
    N = int(input())
    d = defaultdict(set)

    for i in range(N):
        que = list(map(int, input().split()))
        d[i+1] |= set(que[1:])
        for q in que[1:]:
            d[q].add(i+1)
    
    que = deque([1])
    s = set([1])


    while que:
        v = que.popleft()
        for u in d[v]:
            if u not in s:
                s.add(u)
                que.append(u)
    
    if len(s) == N:
        print("Yes")
    else:
        print("No")
        

if __name__ == "__main__":
    main()
0