結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 41 ms
52,008 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 125 ms
81,004 KB
testcase_08 AC 155 ms
82,144 KB
testcase_09 AC 143 ms
82,252 KB
testcase_10 AC 147 ms
82,004 KB
testcase_11 AC 127 ms
81,180 KB
testcase_12 AC 165 ms
87,056 KB
testcase_13 AC 170 ms
87,436 KB
testcase_14 AC 102 ms
78,144 KB
testcase_15 AC 104 ms
77,696 KB
testcase_16 AC 101 ms
77,444 KB
testcase_17 AC 100 ms
77,420 KB
testcase_18 AC 102 ms
77,568 KB
testcase_19 AC 102 ms
77,696 KB
testcase_20 AC 103 ms
77,660 KB
testcase_21 AC 102 ms
77,508 KB
testcase_22 AC 108 ms
77,700 KB
testcase_23 AC 104 ms
77,692 KB
testcase_24 AC 133 ms
80,640 KB
testcase_25 AC 162 ms
83,708 KB
testcase_26 AC 112 ms
79,052 KB
testcase_27 AC 127 ms
83,456 KB
testcase_28 AC 127 ms
83,328 KB
testcase_29 WA -
testcase_30 AC 117 ms
80,408 KB
testcase_31 AC 175 ms
86,740 KB
testcase_32 AC 66 ms
76,160 KB
testcase_33 AC 178 ms
88,168 KB
testcase_34 AC 182 ms
88,040 KB
testcase_35 AC 88 ms
77,056 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 94 ms
76,960 KB
testcase_39 AC 157 ms
85,944 KB
testcase_40 AC 161 ms
86,016 KB
testcase_41 WA -
testcase_42 AC 38 ms
52,352 KB
testcase_43 AC 39 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