結果

問題 No.1007 コイン集め
ユーザー 995himada995himada
提出日時 2020-03-07 10:15:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 128 ms / 1,500 ms
コード長 914 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-04-22 12:32:57
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 82 ms
12,032 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 84 ms
12,032 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 79 ms
12,160 KB
testcase_11 AC 81 ms
12,160 KB
testcase_12 AC 128 ms
18,944 KB
testcase_13 AC 125 ms
19,456 KB
testcase_14 AC 128 ms
18,816 KB
testcase_15 AC 113 ms
18,560 KB
testcase_16 AC 112 ms
18,560 KB
testcase_17 AC 112 ms
18,560 KB
testcase_18 AC 121 ms
19,456 KB
testcase_19 AC 121 ms
19,456 KB
testcase_20 AC 123 ms
19,328 KB
testcase_21 AC 119 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# require 'pry'
def leftcalc(arr, start)
  res = 0
  (start - 2).downto(0) do |i|
    if arr[i] >= 2
      res += arr[i]
    elsif arr[i] == 1
      res += arr[i]
      break
    elsif arr[i] == 0
      break
    end
  end
  return res
end

def rightcalc(arr, start)
  res = 0
  start.upto(arr.size - 1) do |i|
    if arr[i] >= 2
      res += arr[i]
    elsif arr[i] == 1
      res += arr[i]
      break
    elsif arr[i] == 0
      break
    end
  end
  return res
end

N, K = gets.split.map(&:to_i)
arr = gets.split.map(&:to_i)

if K > 1 && K < N
leftsum = leftcalc(arr, K)
rightsum = rightcalc(arr, K)
elsif K == 1
  leftsum = 0
  rightsum = rightcalc(arr, K)
elsif K == N
  leftsum = leftcalc(arr, K)
  rightsum = 0
end
# binding.pry
if arr[K - 1] >= 2
  puts arr[K - 1] + leftsum + rightsum
elsif arr[K - 1] == 1
  puts arr[K - 1] + (leftsum >= rightsum ? leftsum : rightsum)
elsif arr[K - 1] == 0
  puts 0
end
0