結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | letrangerjp |
提出日時 | 2018-12-11 21:43:31 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 34,360 KB |
最終ジャッジ日時 | 2024-09-22 19:02:17 |
合計ジャッジ時間 | 7,674 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i edges = (0..N).map{[]} $<.each{|s| u, v = s.split.map &:to_i edges[u] << v edges[v] << u } while edges.any?{|e| e.size == 1 } (0..N).each{|u| if edges[u].size == 1 v = edges[u][0] edges[v].each{|vv| edges[vv].delete v } end } end p edges.count{|e| e.size == 0} - 1