結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー sho_00sho_00
提出日時 2020-04-07 17:19:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-07 18:25:15
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 47 ms
53,248 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,120 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 39 ms
53,760 KB
testcase_09 AC 40 ms
53,888 KB
testcase_10 WA -
testcase_11 AC 41 ms
53,888 KB
testcase_12 AC 42 ms
54,016 KB
testcase_13 AC 92 ms
77,568 KB
testcase_14 AC 92 ms
77,312 KB
testcase_15 AC 93 ms
77,696 KB
testcase_16 AC 91 ms
77,184 KB
testcase_17 AC 95 ms
77,696 KB
testcase_18 AC 119 ms
80,128 KB
testcase_19 WA -
testcase_20 AC 126 ms
82,176 KB
testcase_21 AC 144 ms
85,504 KB
testcase_22 AC 171 ms
87,808 KB
testcase_23 AC 191 ms
88,320 KB
testcase_24 AC 191 ms
88,448 KB
testcase_25 AC 191 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
e=[[] for _ in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a].append(b)
  e[b].append(a)
seen=[0]*n
seen[0]=1
stack=deque([0])
while stack:
  u=stack.pop()
  for v in e[u]:
    if seen[v]!=1:
      seen[v]=1
      stack.append(v)
if sum(seen)==n:
  print('Bob')
else:
  print('Alice')
0