結果

問題 No.479 頂点は要らない
ユーザー yutat93yutat93
提出日時 2017-02-06 19:44:38
言語 Ruby
(3.4.1)
結果
AC  
実行時間 471 ms / 1,500 ms
コード長 209 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-26 14:21:31
合計ジャッジ時間 11,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
12,032 KB
testcase_01 AC 114 ms
12,160 KB
testcase_02 AC 109 ms
12,032 KB
testcase_03 AC 109 ms
11,904 KB
testcase_04 AC 110 ms
11,904 KB
testcase_05 AC 112 ms
11,904 KB
testcase_06 AC 108 ms
11,904 KB
testcase_07 AC 108 ms
12,160 KB
testcase_08 AC 108 ms
12,032 KB
testcase_09 AC 113 ms
12,160 KB
testcase_10 AC 107 ms
12,032 KB
testcase_11 AC 111 ms
12,032 KB
testcase_12 AC 108 ms
12,160 KB
testcase_13 AC 107 ms
12,032 KB
testcase_14 AC 109 ms
12,160 KB
testcase_15 AC 111 ms
12,032 KB
testcase_16 AC 113 ms
12,160 KB
testcase_17 AC 110 ms
12,032 KB
testcase_18 AC 108 ms
11,904 KB
testcase_19 AC 117 ms
12,032 KB
testcase_20 AC 110 ms
12,032 KB
testcase_21 AC 111 ms
12,160 KB
testcase_22 AC 112 ms
12,032 KB
testcase_23 AC 112 ms
12,160 KB
testcase_24 AC 116 ms
11,904 KB
testcase_25 AC 116 ms
12,032 KB
testcase_26 AC 471 ms
21,376 KB
testcase_27 AC 471 ms
21,376 KB
testcase_28 AC 328 ms
14,464 KB
testcase_29 AC 399 ms
18,048 KB
testcase_30 AC 392 ms
18,304 KB
testcase_31 AC 370 ms
18,176 KB
testcase_32 AC 391 ms
18,304 KB
testcase_33 AC 349 ms
17,920 KB
testcase_34 AC 375 ms
18,304 KB
testcase_35 AC 326 ms
15,616 KB
testcase_36 AC 255 ms
12,928 KB
testcase_37 AC 380 ms
17,920 KB
testcase_38 AC 337 ms
17,280 KB
testcase_39 AC 267 ms
15,616 KB
testcase_40 AC 315 ms
17,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
h=Hash.new{|h,k| h[k]=[]}
m.times{
  a,b=gets.split.map &:to_i
  h[b]<<a
}
a=[0]*n

(n-1).downto(0){|i|
  next if a[i]==1
  h[i].each{|e| a[e]=1}
}

puts a.reverse.join.sub(/^0+/, '')
0