結果

問題 No.479 頂点は要らない
ユーザー angel_p_57angel_p_57
提出日時 2017-01-27 23:57:20
言語 Ruby
(3.4.1)
結果
AC  
実行時間 365 ms / 1,500 ms
コード長 170 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-12-23 17:53:34
合計ジャッジ時間 8,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 92 ms
12,416 KB
testcase_04 AC 94 ms
12,160 KB
testcase_05 AC 93 ms
12,160 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 90 ms
12,416 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 95 ms
12,160 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 92 ms
12,160 KB
testcase_12 AC 93 ms
12,160 KB
testcase_13 AC 92 ms
12,160 KB
testcase_14 AC 91 ms
12,288 KB
testcase_15 AC 92 ms
12,288 KB
testcase_16 AC 91 ms
12,288 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 93 ms
12,288 KB
testcase_19 AC 102 ms
12,288 KB
testcase_20 AC 99 ms
12,288 KB
testcase_21 AC 100 ms
12,288 KB
testcase_22 AC 97 ms
12,544 KB
testcase_23 AC 97 ms
12,288 KB
testcase_24 AC 98 ms
12,288 KB
testcase_25 AC 99 ms
12,288 KB
testcase_26 AC 338 ms
17,280 KB
testcase_27 AC 365 ms
17,152 KB
testcase_28 AC 266 ms
14,080 KB
testcase_29 AC 285 ms
16,384 KB
testcase_30 AC 284 ms
16,384 KB
testcase_31 AC 281 ms
16,384 KB
testcase_32 AC 287 ms
16,384 KB
testcase_33 AC 268 ms
16,000 KB
testcase_34 AC 280 ms
16,128 KB
testcase_35 AC 255 ms
15,104 KB
testcase_36 AC 192 ms
12,928 KB
testcase_37 AC 280 ms
16,000 KB
testcase_38 AC 252 ms
14,976 KB
testcase_39 AC 208 ms
14,336 KB
testcase_40 AC 237 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

f=?0*n=gets.to_i
v=[]
$<.each{|s|
  a,b=s.split.map(&:to_i)
  (v[b]||=[]).push(a)
}
(n-1).downto(0){|i|f[i]==?0&&v[i]&&v[i].each{|e|f[e]=?1}}
puts f.reverse.sub(/^0*/,"")
0