###原因が知りたいです。
ABC087のC問題で次のコードを提出しました。
https://atcoder.jp/contests/abc087/tasks/arc090_a
ruby
1lines = readlines.join.split.map(&:to_i) 2range = lines.shift 3ary = [] 42.times do 5 ary << lines.slice!(0..range-1) 6end 7ans = [] 8for i in 0..range do 9 ans << (ary[0].slice(0..i)).append(ary[1].slice(i..range-1)) 10end 11ans.map!{|t| t.flatten} 12ans.map!{|f| f.sum } 13p ans.max
標準入力↓
7 3 3 4 5 4 5 3 5 3 4 4 2 3 2
ターミナルで実行すると欲しい結果(29)が返ってくるのに、提出するとREになってしまいます。
原因は何故でしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/16 07:18
2020/05/16 07:23
2020/05/16 07:39