結果

問題 No.90 品物の並び替え
ユーザー gemmarogemmaro
提出日時 2020-07-23 08:01:34
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 30,756 KB
最終ジャッジ日時 2024-06-23 15:41:57
合計ジャッジ時間 9,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 476 ms
16,896 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 108 ms
12,544 KB
testcase_04 AC 124 ms
13,824 KB
testcase_05 AC 566 ms
16,640 KB
testcase_06 AC 407 ms
14,464 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

class Array
  def score
    I.map { |l, r, s| index(l) < index(r) ? s : 0 }.sum
  end
end

def solve
  (0..(N - 1)).to_a.permutation.map(&:score).max
end

N, M = gets.split.map(&:to_i)
I = M.times.map { gets.split.map(&:to_i) }

puts solve
0