結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-10 20:29:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 89,584 KB
最終ジャッジ日時 2024-10-11 07:17:50
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 43 ms
53,664 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
54,656 KB
testcase_09 AC 44 ms
54,144 KB
testcase_10 AC 44 ms
54,272 KB
testcase_11 AC 44 ms
54,144 KB
testcase_12 AC 45 ms
54,500 KB
testcase_13 AC 126 ms
77,604 KB
testcase_14 AC 106 ms
77,600 KB
testcase_15 AC 108 ms
77,484 KB
testcase_16 AC 106 ms
77,296 KB
testcase_17 AC 106 ms
77,516 KB
testcase_18 AC 136 ms
80,200 KB
testcase_19 AC 142 ms
80,384 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 270 ms
89,584 KB
testcase_24 AC 257 ms
88,960 KB
testcase_25 AC 280 ms
88,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
 
root = [[] for i in range(n)]
for _ in range(n-1):
    a, b = (int(x) for x in input().split())
    root[b-1].append(a-1)
    root[a-1].append(b-1) 
 
stack=deque([0])
check = [-1]*n
check[0] = 1
 
while len(stack)>0:
    v = stack.popleft()
    for i in root[v]:
        if check[i] == -1:
            check[i]=check[v]+1
            stack.append(i)

if n == 2 or -1 not in check:
    print('Bob')
else:
    count = 0
    for i in root:
        if len(i) < 2:
            count += 1
    if 1 < count:
        print('Alice')
    else:
        print('Bob')
0