結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー kamomekamome
提出日時 2020-04-12 17:35:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-09-22 03:46:38
合計ジャッジ時間 4,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 65 ms
11,776 KB
testcase_14 AC 65 ms
11,776 KB
testcase_15 AC 65 ms
11,648 KB
testcase_16 AC 65 ms
11,776 KB
testcase_17 AC 66 ms
11,904 KB
testcase_18 AC 140 ms
13,824 KB
testcase_19 WA -
testcase_20 AC 224 ms
15,616 KB
testcase_21 AC 324 ms
18,304 KB
testcase_22 AC 431 ms
20,480 KB
testcase_23 WA -
testcase_24 AC 414 ms
20,992 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
islands=[[] for x in range(a)]
for i in range(a-1):
    m,n=map(int,input().split(" "))
    islands[m].append(True)
    islands[n].append(True)
for i in range(a-1):
    if len(islands[i])>2 or len(islands[i])==0:
        print("Alice")
        exit()
print("Bob")
0