結果

問題 No.2780 The Bottle Imp
ユーザー ああいいああいい
提出日時 2024-06-12 11:18:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 87,860 KB
最終ジャッジ日時 2024-06-12 11:18:44
合計ジャッジ時間 6,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,688 KB
testcase_01 AC 38 ms
52,552 KB
testcase_02 AC 39 ms
52,860 KB
testcase_03 AC 37 ms
53,028 KB
testcase_04 AC 39 ms
52,464 KB
testcase_05 AC 38 ms
52,936 KB
testcase_06 AC 41 ms
52,188 KB
testcase_07 AC 181 ms
80,920 KB
testcase_08 AC 153 ms
81,432 KB
testcase_09 AC 137 ms
81,288 KB
testcase_10 AC 156 ms
81,172 KB
testcase_11 AC 136 ms
81,316 KB
testcase_12 AC 165 ms
85,700 KB
testcase_13 AC 161 ms
84,512 KB
testcase_14 AC 83 ms
77,172 KB
testcase_15 AC 86 ms
77,012 KB
testcase_16 AC 89 ms
76,896 KB
testcase_17 AC 84 ms
77,092 KB
testcase_18 AC 85 ms
76,840 KB
testcase_19 AC 88 ms
76,936 KB
testcase_20 AC 89 ms
76,816 KB
testcase_21 AC 85 ms
77,112 KB
testcase_22 AC 115 ms
78,024 KB
testcase_23 AC 92 ms
78,356 KB
testcase_24 AC 143 ms
81,240 KB
testcase_25 AC 162 ms
83,024 KB
testcase_26 AC 120 ms
79,832 KB
testcase_27 AC 120 ms
84,624 KB
testcase_28 AC 120 ms
84,784 KB
testcase_29 WA -
testcase_30 AC 106 ms
80,492 KB
testcase_31 AC 159 ms
86,280 KB
testcase_32 AC 67 ms
76,388 KB
testcase_33 AC 165 ms
87,860 KB
testcase_34 AC 170 ms
87,656 KB
testcase_35 AC 71 ms
76,660 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 77 ms
77,004 KB
testcase_39 AC 144 ms
86,376 KB
testcase_40 AC 146 ms
86,176 KB
testcase_41 WA -
testcase_42 AC 38 ms
52,500 KB
testcase_43 AC 39 ms
52,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N):
	m,*A = list(map(int,input().split()))
	
	for a in A:
		G[_].append(a - 1)
		
ans = 1
memo = [0] * N
stack = [0]
memo[0] = 1
while stack:
	now = stack.pop()
	for a in G[now]:
		if memo[a] == 0:
			ans += 1
			memo[a] = 1
			stack.append(a)
print('Yes' if ans == N else "No")
0