結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 46 ms
54,272 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 46 ms
54,016 KB
testcase_07 AC 184 ms
81,664 KB
testcase_08 AC 263 ms
87,168 KB
testcase_09 AC 209 ms
86,016 KB
testcase_10 AC 225 ms
87,936 KB
testcase_11 AC 188 ms
81,792 KB
testcase_12 AC 267 ms
86,016 KB
testcase_13 AC 265 ms
86,144 KB
testcase_14 AC 173 ms
86,912 KB
testcase_15 AC 173 ms
88,960 KB
testcase_16 AC 146 ms
84,480 KB
testcase_17 AC 164 ms
86,528 KB
testcase_18 AC 176 ms
86,784 KB
testcase_19 AC 174 ms
86,912 KB
testcase_20 AC 180 ms
86,784 KB
testcase_21 AC 173 ms
87,040 KB
testcase_22 AC 147 ms
82,176 KB
testcase_23 AC 174 ms
86,912 KB
testcase_24 AC 229 ms
86,016 KB
testcase_25 AC 284 ms
86,912 KB
testcase_26 AC 165 ms
80,000 KB
testcase_27 AC 185 ms
86,144 KB
testcase_28 AC 188 ms
85,632 KB
testcase_29 WA -
testcase_30 AC 159 ms
81,152 KB
testcase_31 AC 262 ms
88,192 KB
testcase_32 AC 108 ms
77,696 KB
testcase_33 AC 426 ms
186,112 KB
testcase_34 AC 432 ms
186,496 KB
testcase_35 AC 105 ms
77,300 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 102 ms
77,568 KB
testcase_39 AC 275 ms
109,952 KB
testcase_40 AC 255 ms
109,696 KB
testcase_41 WA -
testcase_42 AC 47 ms
53,760 KB
testcase_43 AC 46 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_left, bisect_right
from collections import defaultdict, deque
from itertools import product
INF = int(1e18); arr4 = ((-1, 0), (0, -1), (1, 0), (0, 1))
def dmp(*args, sep=" ", end="\n"): print(*args, sep=sep, end=end, file=sys.stderr)
if "DEBUG" not in sys.argv: dmp = lambda *args: None
import pypyjit
sys.setrecursionlimit(10**7); pypyjit.set_param('max_unroll_recursion=0')

n = int(input())
g = [[] for _ in range(n)]
for i in range(n):
    m, *a = map(lambda x: int(x)-1, input().split())
    for x in a:
        g[i].append(x)
visited = [0] * n
def dfs(v):
    if visited[v]: return
    visited[v] = 1
    for nv in g[v]:
        dfs(nv)
dfs(0)
print('Yes' if sum(visited) == n else 'No')
0