結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 83 ms
12,160 KB
testcase_04 AC 81 ms
12,416 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 83 ms
12,416 KB
testcase_09 AC 82 ms
12,416 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 82 ms
12,288 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 80 ms
12,032 KB
testcase_14 AC 82 ms
12,160 KB
testcase_15 AC 81 ms
12,288 KB
testcase_16 AC 80 ms
12,160 KB
testcase_17 AC 81 ms
12,288 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 85 ms
12,288 KB
testcase_20 AC 87 ms
12,160 KB
testcase_21 AC 87 ms
12,160 KB
testcase_22 AC 87 ms
12,288 KB
testcase_23 AC 87 ms
12,288 KB
testcase_24 AC 85 ms
12,288 KB
testcase_25 AC 88 ms
12,160 KB
testcase_26 AC 302 ms
17,024 KB
testcase_27 AC 298 ms
17,024 KB
testcase_28 AC 237 ms
13,952 KB
testcase_29 AC 250 ms
16,256 KB
testcase_30 AC 242 ms
16,256 KB
testcase_31 AC 258 ms
16,256 KB
testcase_32 AC 251 ms
16,384 KB
testcase_33 AC 240 ms
15,872 KB
testcase_34 AC 242 ms
16,256 KB
testcase_35 AC 229 ms
14,976 KB
testcase_36 AC 171 ms
12,928 KB
testcase_37 AC 249 ms
15,872 KB
testcase_38 AC 222 ms
14,848 KB
testcase_39 AC 185 ms
14,336 KB
testcase_40 AC 217 ms
15,488 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