結果

問題 No.1007 コイン集め
ユーザー gemmarogemmaro
提出日時 2020-03-20 10:24:46
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-05-08 03:50:17
合計ジャッジ時間 4,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 93 ms
12,416 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 91 ms
12,416 KB
testcase_06 AC 93 ms
12,160 KB
testcase_07 AC 93 ms
12,160 KB
testcase_08 AC 94 ms
12,416 KB
testcase_09 WA -
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 93 ms
12,288 KB
testcase_12 AC 147 ms
20,480 KB
testcase_13 AC 147 ms
20,224 KB
testcase_14 AC 143 ms
20,352 KB
testcase_15 AC 135 ms
18,560 KB
testcase_16 AC 134 ms
18,560 KB
testcase_17 AC 131 ms
18,816 KB
testcase_18 AC 145 ms
20,480 KB
testcase_19 AC 138 ms
20,480 KB
testcase_20 AC 144 ms
20,608 KB
testcase_21 AC 143 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