結果

問題 No.2780 The Bottle Imp
ユーザー moon17moon17
提出日時 2024-06-07 23:15:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-12-27 14:32:01
合計ジャッジ時間 7,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 248 ms
77,160 KB
testcase_08 AC 194 ms
78,080 KB
testcase_09 AC 279 ms
77,588 KB
testcase_10 AC 207 ms
77,740 KB
testcase_11 AC 164 ms
77,392 KB
testcase_12 AC 211 ms
78,720 KB
testcase_13 AC 224 ms
78,592 KB
testcase_14 AC 140 ms
76,968 KB
testcase_15 AC 133 ms
76,800 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 130 ms
76,672 KB
testcase_19 AC 125 ms
76,276 KB
testcase_20 AC 134 ms
76,396 KB
testcase_21 WA -
testcase_22 AC 167 ms
77,368 KB
testcase_23 AC 137 ms
77,056 KB
testcase_24 AC 166 ms
76,832 KB
testcase_25 AC 192 ms
77,184 KB
testcase_26 AC 177 ms
76,928 KB
testcase_27 AC 147 ms
81,280 KB
testcase_28 AC 143 ms
81,788 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 167 ms
77,304 KB
testcase_32 AC 90 ms
75,520 KB
testcase_33 AC 169 ms
83,584 KB
testcase_34 AC 158 ms
83,408 KB
testcase_35 AC 103 ms
77,056 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 103 ms
76,160 KB
testcase_39 AC 172 ms
81,000 KB
testcase_40 AC 169 ms
81,280 KB
testcase_41 WA -
testcase_42 AC 39 ms
52,224 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