結果

問題 No.2780 The Bottle Imp
ユーザー manoto43manoto43
提出日時 2024-06-07 22:49:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,496 KB
最終ジャッジ日時 2024-06-08 10:36:00
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 40 ms
53,248 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 41 ms
53,120 KB
testcase_07 AC 119 ms
83,628 KB
testcase_08 AC 160 ms
87,064 KB
testcase_09 AC 153 ms
86,444 KB
testcase_10 AC 158 ms
86,528 KB
testcase_11 AC 117 ms
83,756 KB
testcase_12 AC 170 ms
89,856 KB
testcase_13 AC 172 ms
89,672 KB
testcase_14 AC 102 ms
77,836 KB
testcase_15 AC 103 ms
79,244 KB
testcase_16 AC 98 ms
77,824 KB
testcase_17 AC 97 ms
77,824 KB
testcase_18 AC 99 ms
77,696 KB
testcase_19 AC 99 ms
77,824 KB
testcase_20 AC 101 ms
78,208 KB
testcase_21 AC 101 ms
77,824 KB
testcase_22 AC 110 ms
80,292 KB
testcase_23 AC 103 ms
80,384 KB
testcase_24 AC 136 ms
84,140 KB
testcase_25 AC 176 ms
89,232 KB
testcase_26 AC 102 ms
81,152 KB
testcase_27 AC 128 ms
85,812 KB
testcase_28 AC 127 ms
85,428 KB
testcase_29 WA -
testcase_30 AC 121 ms
82,676 KB
testcase_31 AC 212 ms
102,292 KB
testcase_32 AC 70 ms
76,648 KB
testcase_33 AC 189 ms
103,364 KB
testcase_34 AC 193 ms
103,496 KB
testcase_35 AC 86 ms
77,696 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 84 ms
77,588 KB
testcase_39 AC 159 ms
93,840 KB
testcase_40 AC 160 ms
93,600 KB
testcase_41 WA -
testcase_42 AC 42 ms
53,248 KB
testcase_43 AC 41 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque

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

    for i in range(N):
        que = list(map(int, input().split()))
        d[i+1] = que[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