結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | flygon |
提出日時 | 2023-03-28 12:43:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 88,680 KB |
最終ジャッジ日時 | 2024-09-20 03:14:05 |
合計ジャッジ時間 | 3,936 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,600 KB |
testcase_01 | AC | 38 ms
55,036 KB |
testcase_02 | AC | 38 ms
54,096 KB |
testcase_03 | AC | 38 ms
54,260 KB |
testcase_04 | AC | 39 ms
54,712 KB |
testcase_05 | AC | 39 ms
54,884 KB |
testcase_06 | AC | 39 ms
54,516 KB |
testcase_07 | AC | 41 ms
54,228 KB |
testcase_08 | AC | 41 ms
55,784 KB |
testcase_09 | AC | 44 ms
55,444 KB |
testcase_10 | WA | - |
testcase_11 | AC | 43 ms
54,600 KB |
testcase_12 | AC | 41 ms
55,204 KB |
testcase_13 | AC | 88 ms
77,300 KB |
testcase_14 | AC | 81 ms
77,044 KB |
testcase_15 | AC | 90 ms
77,412 KB |
testcase_16 | AC | 89 ms
77,644 KB |
testcase_17 | AC | 89 ms
77,528 KB |
testcase_18 | AC | 107 ms
80,456 KB |
testcase_19 | WA | - |
testcase_20 | AC | 117 ms
81,932 KB |
testcase_21 | AC | 140 ms
85,028 KB |
testcase_22 | AC | 170 ms
87,948 KB |
testcase_23 | AC | 202 ms
88,680 KB |
testcase_24 | AC | 210 ms
88,672 KB |
testcase_25 | AC | 200 ms
88,264 KB |
ソースコード
n= int(input()) graph = [[] for i in range(n+1)] for i in range(n-1): a,b = map(int,input().split()) graph[a].append(b) graph[b].append(a) from collections import deque que = deque([0]) depth = [-1]*(n+1) depth[0] = 0 while que: crr = que.popleft() for nxt in graph[crr]: if depth[nxt] == -1: depth[nxt] = depth[crr]+1 que.append(nxt) flg = 1 for i in range(n): flg &= (depth[i] != -1) if flg: print("Bob") else: print("Alice")