結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー TomoProgTomoProg
提出日時 2020-02-11 21:22:53
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,748 KB
最終ジャッジ日時 2024-10-01 08:12:58
合計ジャッジ時間 15,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
18,852 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 92 ms
12,032 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 79 ms
12,032 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 WA -
testcase_11 AC 90 ms
12,288 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 TLE -
testcase_14 AC 1,962 ms
12,928 KB
testcase_15 AC 1,964 ms
12,928 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

island_num = gets.to_i
bridge_num = island_num - 1
island_with_bridge = []
bridge_num.times do
  islands = gets.split
  island_with_bridge << islands[0] unless island_with_bridge.include?(islands[0])
  island_with_bridge << islands[1] unless island_with_bridge.include?(islands[1])
end

puts(island_with_bridge.length == island_num ? "Bob" : "Alice")
0