結果

問題 No.479 頂点は要らない
ユーザー yutat93yutat93
提出日時 2017-02-06 19:00:22
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 141,056 KB
最終ジャッジ日時 2024-12-24 08:18:16
合計ジャッジ時間 51,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
17,536 KB
testcase_01 AC 82 ms
80,852 KB
testcase_02 AC 98 ms
17,536 KB
testcase_03 AC 85 ms
85,376 KB
testcase_04 AC 84 ms
17,536 KB
testcase_05 AC 82 ms
64,300 KB
testcase_06 AC 81 ms
17,664 KB
testcase_07 AC 82 ms
61,836 KB
testcase_08 AC 80 ms
17,536 KB
testcase_09 AC 82 ms
141,056 KB
testcase_10 AC 81 ms
17,664 KB
testcase_11 AC 79 ms
59,804 KB
testcase_12 AC 81 ms
17,664 KB
testcase_13 AC 83 ms
61,564 KB
testcase_14 AC 86 ms
19,236 KB
testcase_15 AC 84 ms
17,664 KB
testcase_16 AC 83 ms
19,104 KB
testcase_17 AC 86 ms
17,408 KB
testcase_18 AC 84 ms
19,364 KB
testcase_19 TLE -
testcase_20 AC 165 ms
49,572 KB
testcase_21 AC 106 ms
24,064 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,239 ms
77,988 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
@lines=(1..m).map{gets.split.map &:to_i}
@a=0

def loop max
  tmp_lines = @lines.select{|l| l.include? max}
  tops=tmp_lines.flatten.delete_if{|e| e==max}
  @a+=tops.reduce(0){|a, e| a+=2**e}
  @lines.delete_if{|l| !(l & (tops << max)).empty?}
  return if @lines.empty?
  max=@lines.flatten.max
  loop max
end

loop n-1
puts @a.to_s(2)
0