結果

問題 No.2780 The Bottle Imp
ユーザー moon17moon17
提出日時 2024-06-07 23:15:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-06-08 10:37:54
合計ジャッジ時間 7,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
51,824 KB
testcase_07 AC 188 ms
77,852 KB
testcase_08 AC 179 ms
77,696 KB
testcase_09 AC 190 ms
77,860 KB
testcase_10 AC 202 ms
77,960 KB
testcase_11 AC 160 ms
78,004 KB
testcase_12 AC 198 ms
78,976 KB
testcase_13 AC 208 ms
78,976 KB
testcase_14 AC 142 ms
76,916 KB
testcase_15 AC 130 ms
76,672 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 127 ms
76,928 KB
testcase_19 AC 119 ms
76,464 KB
testcase_20 AC 128 ms
76,912 KB
testcase_21 WA -
testcase_22 AC 155 ms
77,624 KB
testcase_23 AC 132 ms
76,672 KB
testcase_24 AC 143 ms
76,880 KB
testcase_25 AC 169 ms
77,184 KB
testcase_26 AC 165 ms
77,056 KB
testcase_27 AC 145 ms
82,048 KB
testcase_28 AC 143 ms
81,840 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 163 ms
77,384 KB
testcase_32 AC 92 ms
75,816 KB
testcase_33 AC 153 ms
83,200 KB
testcase_34 AC 166 ms
83,456 KB
testcase_35 AC 104 ms
76,900 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 102 ms
76,664 KB
testcase_39 AC 170 ms
81,028 KB
testcase_40 AC 153 ms
81,408 KB
testcase_41 WA -
testcase_42 AC 37 ms
51,968 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
uf=[*range(n)]
def find(x):
 q=[]
 while uf[x]^x:q+=x,;x=uf[x]
 for p in q:uf[p]=x
 return x
def unite(x,y):
 x,y=find(x),find(y)
 if x^y:uf[x]=y
for i in range(n):
  m,*a=map(int,input().split())
  for j in a:
    unite(i,j-1)
s=set()
for i in range(n):
  s|={find(i)}
if len(s)==1:
  print('Yes')
else:
  print('No')
0