結果

問題 No.1007 コイン集め
ユーザー ei13337ei13337
提出日時 2020-03-06 23:19:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 44 ms / 1,500 ms
コード長 565 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 169,084 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 09:49:50
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main() {
  int n, k;
  cin >> n >> k;
  k--;
  vector<int> a(n);
  for(int i = 0; i < n; i++) cin >> a[i];
  if(a[k] == 0) {
    cout << 0 << endl;
    return 0;
  }
  long long ans1 = 0, ans2 = 0;
  int pos = k;
  while(pos && a[pos - 1]) {
    pos--;
    ans1 += a[pos];
    if(a[pos] == 1) break;
  }
  pos = k;
  while(pos < n - 1 && a[pos + 1]) {
    pos++;
    ans2 += a[pos];
    if(a[pos] == 1) break;
  }
  if(a[k] == 1) cout << max(ans1, ans2) + a[k] << endl;
  else cout << ans1 + ans2 + a[k] << endl;
}
0