結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー tamatotamato
提出日時 2020-01-31 21:32:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 85,764 KB
最終ジャッジ日時 2024-09-17 07:16:42
合計ジャッジ時間 2,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,440 KB
testcase_01 AC 36 ms
52,932 KB
testcase_02 AC 37 ms
52,644 KB
testcase_03 AC 35 ms
53,376 KB
testcase_04 AC 34 ms
53,696 KB
testcase_05 AC 35 ms
52,852 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
54,152 KB
testcase_09 AC 34 ms
52,992 KB
testcase_10 AC 35 ms
53,356 KB
testcase_11 AC 34 ms
52,736 KB
testcase_12 AC 34 ms
53,164 KB
testcase_13 WA -
testcase_14 AC 54 ms
71,504 KB
testcase_15 AC 55 ms
71,424 KB
testcase_16 WA -
testcase_17 AC 53 ms
68,852 KB
testcase_18 WA -
testcase_19 AC 73 ms
78,800 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 122 ms
84,764 KB
testcase_24 AC 109 ms
85,168 KB
testcase_25 AC 120 ms
84,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    adj = [[] for _ in range(N)]
    for _ in range(N-1):
        u, v = map(int, input().split())
        adj[u].append(v)
        adj[v].append(u)
    cnt_0 = 0
    cnt_1 = 0
    for i in range(N):
        if len(adj[i]) == 0:
            cnt_0 += 1
        elif len(adj[i]) == 1:
            cnt_1 += 1
    if cnt_0 >= 2:
        print('Alice')
    elif cnt_0 == 1 and cnt_1 >= 1:
        print('Alice')
    else:
        print('Bob')


if __name__ == '__main__':
    main()
0