結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-01-31 23:24:25
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,560 KB
最終ジャッジ日時 2024-09-17 10:44:47
合計ジャッジ時間 8,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
19,104 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 89 ms
12,288 KB
testcase_10 WA -
testcase_11 AC 90 ms
12,160 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 822 ms
13,568 KB
testcase_14 AC 614 ms
13,568 KB
testcase_15 AC 613 ms
13,568 KB
testcase_16 AC 835 ms
13,440 KB
testcase_17 AC 842 ms
13,440 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
b = {}
(n-1).times do
  u, v = gets.chomp.split.map(&:to_i)

  b[u] ||= []
  b[u] << v
  b[v] ||= []
  b[v] << u
end
s = b.keys.first
visited = [s]
q = [s]
until q.empty?
  p = q.shift

  b[p].each do |bi|
    next if visited.include?(bi)

    visited << bi
    q.push(bi)
  end
end
puts visited.uniq.size == n ? 'Bob' : 'Alice'
0