結果

問題 No.1007 コイン集め
ユーザー 乾麺乾麺
提出日時 2024-05-17 07:59:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 845 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 277,836 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 07:59:13
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
6,940 KB
testcase_13 AC 42 ms
6,940 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 17 ms
6,944 KB
testcase_16 AC 16 ms
6,940 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 41 ms
6,944 KB
testcase_19 AC 42 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 41 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/dsu>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long INF = 1e18;
const long long MOD=1e9+7;
//for (auto [key, val] : mp)
int main() { ll n,k;cin>>n>>k;
li vec(n);
rep(i,0,n)cin>>vec[i];
ll a=0,b=n-1;
rep(i,0,k-1){if(vec[i]==1){a=i;}if(vec[i]==0){a=i+1;}}
rep(i,k,n){if(vec[i]==1){b=i;break;}else if(vec[i]==0){b=i-1;break;}}
if(vec[k-1]>1){
	ll ans=0;
	rep(i,a,b+1)ans+=vec[i];
cout<<ans;
}
else if(vec[k-1]==1) {
	ll ans=0;
	rep(i,a,k-1)ans+=vec[i];
	ll B=0;
	rep(i,k,b)B+=vec[i];
	if(B<ans)cout<<ans;
	else cout<<B;
}
else cout<<0;
}
0