結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー いたいた
提出日時 2024-12-04 05:39:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-12-04 05:39:33
合計ジャッジ時間 4,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 57 ms
53,376 KB
testcase_07 AC 58 ms
54,268 KB
testcase_08 AC 46 ms
54,144 KB
testcase_09 AC 41 ms
54,400 KB
testcase_10 WA -
testcase_11 AC 43 ms
54,144 KB
testcase_12 AC 43 ms
54,528 KB
testcase_13 AC 112 ms
76,928 KB
testcase_14 AC 135 ms
77,056 KB
testcase_15 AC 120 ms
76,956 KB
testcase_16 AC 117 ms
77,312 KB
testcase_17 AC 129 ms
77,300 KB
testcase_18 AC 167 ms
77,440 KB
testcase_19 WA -
testcase_20 AC 199 ms
78,024 KB
testcase_21 AC 227 ms
78,592 KB
testcase_22 AC 253 ms
79,488 KB
testcase_23 AC 257 ms
79,232 KB
testcase_24 AC 187 ms
78,684 KB
testcase_25 AC 240 ms
79,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
def root(n):

  if ne[n]<0:return n
  else:
    ne[n]=root(ne[n])
    return ne[n]
ne=[-1]*N
def merge(x,y):
  x,y=root(x),root(y)
  if x==y:return
  if y<x:y,x=x,y
  ne[x]+=ne[y]
  ne[y]=x
a=[0]*N
for _ in range(N-1):
  u,v=map(int,input().split())
  merge(u,v)
v=set()
for i in range(N):
  v.add(root(i))
if len(v)==1:
  print("Bob")
else:
  print("Alice")
0