結果

問題 No.2780 The Bottle Imp
ユーザー moon17moon17
提出日時 2024-06-07 23:17:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,164 KB
最終ジャッジ日時 2024-06-08 10:38:06
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 126 ms
81,280 KB
testcase_08 AC 153 ms
81,920 KB
testcase_09 AC 145 ms
81,920 KB
testcase_10 AC 146 ms
81,792 KB
testcase_11 AC 129 ms
81,024 KB
testcase_12 AC 169 ms
87,184 KB
testcase_13 AC 172 ms
87,300 KB
testcase_14 AC 106 ms
77,824 KB
testcase_15 AC 108 ms
77,440 KB
testcase_16 AC 104 ms
77,696 KB
testcase_17 AC 103 ms
77,696 KB
testcase_18 AC 106 ms
77,440 KB
testcase_19 AC 103 ms
77,568 KB
testcase_20 AC 104 ms
77,568 KB
testcase_21 AC 103 ms
77,440 KB
testcase_22 AC 111 ms
77,568 KB
testcase_23 AC 105 ms
77,440 KB
testcase_24 AC 130 ms
80,512 KB
testcase_25 AC 161 ms
83,324 KB
testcase_26 AC 113 ms
78,976 KB
testcase_27 AC 132 ms
83,328 KB
testcase_28 AC 129 ms
83,456 KB
testcase_29 WA -
testcase_30 AC 125 ms
79,872 KB
testcase_31 AC 176 ms
86,744 KB
testcase_32 AC 71 ms
76,416 KB
testcase_33 AC 182 ms
87,912 KB
testcase_34 AC 185 ms
88,164 KB
testcase_35 AC 90 ms
76,928 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 91 ms
77,184 KB
testcase_39 AC 160 ms
86,016 KB
testcase_40 AC 163 ms
86,016 KB
testcase_41 WA -
testcase_42 AC 37 ms
51,712 KB
testcase_43 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d=[]
for i in range(n):
  m,*a=map(int,input().split())
  d+=[i-1 for i in a],
q=[0]
s=[0]*n
s[0]=1
while q:
  p=q.pop()
  for v in d[p]:
    if s[v]<1:
      s[v]=1
      q+=v,
if sum(s)==n:
  print('Yes')
else:
  print('No')
0