結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 WA -
testcase_14 AC 47 ms
65,152 KB
testcase_15 AC 47 ms
64,640 KB
testcase_16 WA -
testcase_17 AC 48 ms
64,896 KB
testcase_18 WA -
testcase_19 AC 53 ms
73,344 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 69 ms
76,236 KB
testcase_24 AC 70 ms
76,288 KB
testcase_25 AC 69 ms
76,416 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