結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー convexineqconvexineq
提出日時 2020-01-31 21:34:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-09-17 07:19:49
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
10,752 KB
testcase_15 AC 38 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 89 ms
11,136 KB
testcase_21 AC 119 ms
11,264 KB
testcase_22 AC 146 ms
11,520 KB
testcase_23 AC 156 ms
11,520 KB
testcase_24 WA -
testcase_25 AC 155 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read


n = int(input())
res = [0]*n
for _ in range(n-1):
    a,b = [int(i) for i in readline().split()]
    res[a] += 1
    res[b] += 1

c = res.count(0)    
d = res.count(1)

if c >= 2:
    print("Alice")
elif c == 0:
    print("Bob")
else:
    if d == 0: 
        print("Alice")
    else:
        print("Bob")
        









0