結果

問題 No.1007 コイン集め
ユーザー 995himada995himada
提出日時 2020-03-07 10:08:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-04-22 12:31:48
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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