結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | takakin |
提出日時 | 2020-05-15 14:08:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 564 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-09-18 23:19:50 |
合計ジャッジ時間 | 3,707 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 32 ms
10,624 KB |
testcase_03 | AC | 34 ms
10,496 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | AC | 36 ms
10,496 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 31 ms
10,624 KB |
testcase_10 | AC | 32 ms
10,624 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 54 ms
10,752 KB |
testcase_14 | AC | 54 ms
10,624 KB |
testcase_15 | AC | 53 ms
10,752 KB |
testcase_16 | AC | 54 ms
10,752 KB |
testcase_17 | WA | - |
testcase_18 | AC | 101 ms
11,008 KB |
testcase_19 | AC | 99 ms
11,136 KB |
testcase_20 | AC | 151 ms
11,776 KB |
testcase_21 | AC | 215 ms
12,160 KB |
testcase_22 | AC | 277 ms
12,672 KB |
testcase_23 | AC | 281 ms
12,288 KB |
testcase_24 | WA | - |
testcase_25 | AC | 272 ms
12,416 KB |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n=int(input()) par=[-1]*n def find(x): if par[x]<0: return x else: par[x]=find(par[x]) return par[x] def unite(x,y): x=find(x) y=find(y) if x==y: return False else: if par[x]>par[y]: x,y=y,x par[x]+=par[y] par[y]=x return True def same(x,y): return find(x)==find(y) def size(x): return -par[find(x)] for _ in range(n-1): u,v=map(int,input().split()) unite(u,v) for i in range(n): find(i) if -min(par)>=n-1: print("Bob") else: print("Alice")