結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 45 ms
53,632 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 164 ms
81,664 KB
testcase_08 AC 233 ms
87,552 KB
testcase_09 AC 185 ms
85,760 KB
testcase_10 AC 198 ms
87,552 KB
testcase_11 AC 168 ms
81,536 KB
testcase_12 AC 228 ms
86,144 KB
testcase_13 AC 232 ms
85,936 KB
testcase_14 AC 155 ms
87,296 KB
testcase_15 AC 156 ms
89,216 KB
testcase_16 AC 130 ms
84,736 KB
testcase_17 AC 141 ms
86,656 KB
testcase_18 AC 151 ms
86,528 KB
testcase_19 AC 153 ms
86,528 KB
testcase_20 AC 150 ms
86,784 KB
testcase_21 AC 151 ms
87,168 KB
testcase_22 AC 129 ms
82,432 KB
testcase_23 AC 150 ms
87,040 KB
testcase_24 AC 209 ms
86,272 KB
testcase_25 AC 256 ms
87,040 KB
testcase_26 AC 146 ms
80,036 KB
testcase_27 AC 171 ms
85,504 KB
testcase_28 AC 170 ms
85,760 KB
testcase_29 WA -
testcase_30 AC 145 ms
81,024 KB
testcase_31 AC 236 ms
87,808 KB
testcase_32 AC 94 ms
77,696 KB
testcase_33 AC 401 ms
186,752 KB
testcase_34 AC 395 ms
186,496 KB
testcase_35 AC 90 ms
77,440 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 91 ms
77,400 KB
testcase_39 AC 237 ms
109,696 KB
testcase_40 AC 237 ms
109,696 KB
testcase_41 WA -
testcase_42 AC 44 ms
53,760 KB
testcase_43 AC 45 ms
53,760 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