結果

問題 No.572 妖精の演奏
ユーザー YosukeKawadaYosukeKawada
提出日時 2017-12-29 12:45:38
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 260 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-12-21 10:28:16
合計ジャッジ時間 11,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
18,980 KB
testcase_01 AC 81 ms
25,088 KB
testcase_02 AC 80 ms
18,976 KB
testcase_03 AC 80 ms
24,960 KB
testcase_04 AC 87 ms
19,232 KB
testcase_05 AC 96 ms
12,544 KB
testcase_06 AC 121 ms
12,544 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 AC 215 ms
12,800 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 94 ms
12,160 KB
testcase_15 AC 98 ms
12,160 KB
testcase_16 AC 90 ms
12,160 KB
testcase_17 AC 103 ms
12,544 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 81 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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