結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー MottchanMottchan
提出日時 2023-03-27 22:25:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 93,776 KB
最終ジャッジ日時 2024-09-19 16:58:35
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 AC 35 ms
52,112 KB
testcase_02 AC 34 ms
52,300 KB
testcase_03 AC 34 ms
52,868 KB
testcase_04 AC 35 ms
52,952 KB
testcase_05 AC 36 ms
53,044 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,816 KB
testcase_09 AC 36 ms
53,044 KB
testcase_10 AC 39 ms
52,548 KB
testcase_11 AC 36 ms
54,152 KB
testcase_12 AC 37 ms
52,872 KB
testcase_13 WA -
testcase_14 AC 89 ms
77,084 KB
testcase_15 AC 88 ms
76,904 KB
testcase_16 WA -
testcase_17 AC 82 ms
77,464 KB
testcase_18 WA -
testcase_19 AC 103 ms
80,628 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 193 ms
93,108 KB
testcase_24 AC 196 ms
93,776 KB
testcase_25 AC 201 ms
93,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = [[]for i in range(n)]
for i in range(n-1):
    u,v = list(map(int, input().split()))
    S[u-1].append(v)
    S[v-1].append(u)

cnt=list()
for i in S:
    cnt.append(len(i))

cnt.sort()

if cnt[0] == 0:
    if cnt[1] <= 1:
        print('Alice')
    else:
        print('Bob')
else:
    print('Bob')
0