結果

問題 No.479 頂点は要らない
ユーザー smz_8110smz_8110
提出日時 2017-04-18 16:14:21
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 131,200 KB
最終ジャッジ日時 2024-07-19 07:37:50
合計ジャッジ時間 10,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 83 ms
12,032 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 79 ms
11,904 KB
testcase_05 AC 79 ms
12,032 KB
testcase_06 AC 80 ms
12,032 KB
testcase_07 AC 82 ms
12,288 KB
testcase_08 AC 81 ms
12,032 KB
testcase_09 AC 80 ms
12,032 KB
testcase_10 AC 77 ms
12,032 KB
testcase_11 AC 79 ms
12,288 KB
testcase_12 AC 86 ms
12,032 KB
testcase_13 AC 77 ms
12,288 KB
testcase_14 AC 79 ms
12,288 KB
testcase_15 AC 79 ms
12,032 KB
testcase_16 AC 79 ms
12,160 KB
testcase_17 AC 78 ms
12,032 KB
testcase_18 AC 79 ms
12,160 KB
testcase_19 AC 83 ms
12,160 KB
testcase_20 AC 90 ms
12,288 KB
testcase_21 AC 86 ms
12,032 KB
testcase_22 AC 81 ms
12,416 KB
testcase_23 AC 85 ms
12,288 KB
testcase_24 AC 83 ms
12,288 KB
testcase_25 AC 85 ms
12,288 KB
testcase_26 AC 1,434 ms
107,136 KB
testcase_27 AC 1,459 ms
110,336 KB
testcase_28 TLE -
testcase_29 AC 762 ms
85,248 KB
testcase_30 AC 784 ms
85,760 KB
testcase_31 AC 767 ms
85,376 KB
testcase_32 AC 775 ms
84,992 KB
testcase_33 AC 745 ms
82,048 KB
testcase_34 AC 761 ms
78,592 KB
testcase_35 AC 425 ms
28,032 KB
testcase_36 AC 232 ms
15,872 KB
testcase_37 AC 800 ms
77,312 KB
testcase_38 AC 622 ms
71,296 KB
testcase_39 AC 462 ms
43,520 KB
testcase_40 AC 704 ms
85,376 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]
}
r=0
x.keys.sort{|a,b|b<=>a}.each{|v|
  if x[v].size>0
    r|=2**v
    y[v].each{|i|
      x[i].delete v
    } if y[v]
  end
}
puts r.to_s(2)
0