結果

問題 No.1007 コイン集め
ユーザー gemmarogemmaro
提出日時 2020-03-20 10:24:46
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-12-14 03:59:59
合計ジャッジ時間 3,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 86 ms
12,288 KB
testcase_09 WA -
testcase_10 AC 87 ms
12,288 KB
testcase_11 AC 87 ms
12,416 KB
testcase_12 AC 132 ms
20,352 KB
testcase_13 AC 134 ms
20,480 KB
testcase_14 AC 134 ms
20,352 KB
testcase_15 AC 124 ms
18,560 KB
testcase_16 AC 124 ms
18,560 KB
testcase_17 AC 125 ms
18,560 KB
testcase_18 AC 136 ms
20,480 KB
testcase_19 AC 126 ms
20,352 KB
testcase_20 AC 132 ms
20,480 KB
testcase_21 AC 128 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

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

if AS[K - 1].zero?
  puts(0)
  exit
end

count = 0
[AS[K..-1], AS[0..K - 1].reverse].each do |a|
  a.take_while do |i|
    if i >= 2
      count += i
      true
    elsif i == 1
      count += 1
      false
    else false
    end
  end
end

puts count
0