結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー rlangevinrlangevin
提出日時 2023-01-03 14:41:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-05-05 07:11:05
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,072 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 40 ms
51,456 KB
testcase_12 AC 43 ms
51,712 KB
testcase_13 WA -
testcase_14 AC 50 ms
64,384 KB
testcase_15 AC 50 ms
64,896 KB
testcase_16 WA -
testcase_17 AC 52 ms
64,384 KB
testcase_18 WA -
testcase_19 AC 64 ms
72,960 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 82 ms
75,392 KB
testcase_24 AC 85 ms
75,648 KB
testcase_25 AC 89 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
    
N = int(readline())
D = [0] * N
for i in range(N - 1):
    w, v = map(int, readline().split())
    D[w] += 1
    D[v] += 1
    
zero = 0
for i in range(N):
    if D[i] == 0:
        zero += 1
if (zero == 1 and len(set(D)) == 2) or not zero:
    print("Bob")
else:
    print("Alice")
0