結果

問題 No.572 妖精の演奏
ユーザー YosukeKawadaYosukeKawada
提出日時 2017-12-29 12:45:38
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 260 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,872 KB
最終ジャッジ日時 2024-06-01 06:37:27
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
19,232 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 AC 100 ms
12,416 KB
testcase_05 AC 108 ms
12,672 KB
testcase_06 AC 123 ms
12,416 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 95 ms
12,288 KB
testcase_09 AC 93 ms
12,032 KB
testcase_10 AC 244 ms
12,672 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def gl
  $stdin.gets.chomp
end

N = gl.to_i
M = gl.to_i

scores = (0...M).map{ gl.split(" ").map{ |a| a.to_i } }
status = (0...M).map{ 0 }
(N-1).times {
  ns = (0...M).map{ |j| (0...M).map{ |i| scores[i][j] + status[i] }.max }
  status = ns
}
puts status.max

0