結果

問題 No.479 頂点は要らない
ユーザー smz_8110smz_8110
提出日時 2017-04-18 16:19:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 416 ms / 1,500 ms
コード長 331 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-07-19 07:38:00
合計ジャッジ時間 8,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 85 ms
12,032 KB
testcase_04 AC 84 ms
12,288 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 84 ms
12,160 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 78 ms
12,032 KB
testcase_12 AC 78 ms
12,160 KB
testcase_13 AC 78 ms
12,160 KB
testcase_14 AC 76 ms
12,160 KB
testcase_15 AC 81 ms
12,032 KB
testcase_16 AC 82 ms
12,032 KB
testcase_17 AC 79 ms
12,160 KB
testcase_18 AC 77 ms
11,904 KB
testcase_19 AC 83 ms
12,416 KB
testcase_20 AC 87 ms
12,288 KB
testcase_21 AC 87 ms
12,032 KB
testcase_22 AC 83 ms
12,416 KB
testcase_23 AC 85 ms
12,160 KB
testcase_24 AC 80 ms
12,032 KB
testcase_25 AC 82 ms
12,032 KB
testcase_26 AC 405 ms
28,416 KB
testcase_27 AC 416 ms
30,336 KB
testcase_28 AC 348 ms
24,960 KB
testcase_29 AC 344 ms
24,192 KB
testcase_30 AC 339 ms
23,936 KB
testcase_31 AC 349 ms
23,808 KB
testcase_32 AC 348 ms
23,808 KB
testcase_33 AC 311 ms
21,632 KB
testcase_34 AC 330 ms
22,272 KB
testcase_35 AC 299 ms
18,944 KB
testcase_36 AC 204 ms
14,208 KB
testcase_37 AC 328 ms
21,888 KB
testcase_38 AC 294 ms
21,888 KB
testcase_39 AC 224 ms
17,664 KB
testcase_40 AC 265 ms
21,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
x={}
y={}
m.times{
  b=gets.split.map(&:to_i)
  c=b[0]
  x[c]=[] unless x[c]
  x[c]<<b[1]
  c=b[1]
  y[c]=[] unless y[c]
  y[c]<<b[0]
}
f=false
x.keys.max.downto(0){|v|
  if x[v]&&x[v].size>0
    print 1
    y[v].each{|i|
      x[i].delete v
    } if y[v]
    f=true
  elsif f
    print 0
  end
}
puts ""
0