結果

問題 No.479 頂点は要らない
ユーザー cielciel
提出日時 2017-01-30 01:54:21
言語 Ruby
(3.4.1)
結果
AC  
実行時間 459 ms / 1,500 ms
コード長 223 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-26 18:10:46
合計ジャッジ時間 10,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
12,032 KB
testcase_01 AC 114 ms
12,032 KB
testcase_02 AC 107 ms
12,160 KB
testcase_03 AC 111 ms
12,160 KB
testcase_04 AC 111 ms
12,032 KB
testcase_05 AC 107 ms
12,032 KB
testcase_06 AC 112 ms
12,160 KB
testcase_07 AC 109 ms
11,904 KB
testcase_08 AC 112 ms
11,904 KB
testcase_09 AC 115 ms
12,160 KB
testcase_10 AC 108 ms
12,032 KB
testcase_11 AC 109 ms
12,032 KB
testcase_12 AC 107 ms
12,160 KB
testcase_13 AC 108 ms
12,032 KB
testcase_14 AC 108 ms
12,032 KB
testcase_15 AC 114 ms
12,288 KB
testcase_16 AC 115 ms
12,160 KB
testcase_17 AC 113 ms
12,032 KB
testcase_18 AC 116 ms
12,160 KB
testcase_19 AC 119 ms
12,288 KB
testcase_20 AC 117 ms
12,160 KB
testcase_21 AC 114 ms
12,032 KB
testcase_22 AC 116 ms
11,904 KB
testcase_23 AC 118 ms
12,288 KB
testcase_24 AC 117 ms
12,288 KB
testcase_25 AC 114 ms
12,160 KB
testcase_26 AC 448 ms
21,120 KB
testcase_27 AC 459 ms
21,760 KB
testcase_28 AC 335 ms
14,720 KB
testcase_29 AC 391 ms
18,304 KB
testcase_30 AC 386 ms
18,176 KB
testcase_31 AC 378 ms
17,920 KB
testcase_32 AC 386 ms
18,048 KB
testcase_33 AC 364 ms
18,048 KB
testcase_34 AC 385 ms
18,304 KB
testcase_35 AC 328 ms
15,616 KB
testcase_36 AC 240 ms
12,928 KB
testcase_37 AC 383 ms
17,920 KB
testcase_38 AC 337 ms
17,280 KB
testcase_39 AC 274 ms
15,488 KB
testcase_40 AC 317 ms
17,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
h=Hash.new{|h,k|h[k]=[]}
n,m=gets.split.map(&:to_i)
m.times{
	a,b=gets.split.map(&:to_i)
	h[b]<<a
}
r=[0]*n
(n-1).downto(0){|i|
	next if r[i]==1
	h[i].each{|e|
		r[e]=1
	}
}
puts r.reverse.join.sub(/^0+/,'')
0