結果

問題 No.1007 コイン集め
ユーザー cureskolcureskol
提出日時 2020-04-13 22:21:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 44 ms / 1,500 ms
コード長 621 bytes
コンパイル時間 1,953 ms
コンパイル使用メモリ 169,024 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 11:00:52
合計ジャッジ時間 3,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long
int ans;

signed main(){
  int n,k;cin>>n>>k;k--;
  vector<int> v(n);
  for(int i=0;i<n;i++)cin>>v[i];
  if(!v[k])cout<<0<<endl;
  else if(v[k]==1){
    int tmp=0;
    for(int i=k-1;i>=0;i--){
      tmp+=v[i];
      if(v[i]<=1)break;
    }
    for(int i=k+1;i<n;i++){
      ans+=v[i];
      if(v[i]<=1)break;
    }
    cout<<max(ans,tmp)+1<<endl;
  }
  else{
    ans+=v[k];
    for(int i=k-1;i>=0;i--){
      ans+=v[i];
      if(v[i]<=1)break;
    }
    for(int i=k+1;i<n;i++){
      ans+=v[i];
      if(v[i]<=1)break;
    }
    cout<<ans<<endl;
  }
}
0