結果

問題 No.1007 コイン集め
ユーザー kotatsugamekotatsugame
提出日時 2020-03-07 00:19:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 64,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-22 11:03:47
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 43 ms
5,376 KB
testcase_14 AC 43 ms
5,376 KB
testcase_15 AC 17 ms
5,376 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 48 ms
5,376 KB
testcase_19 AC 46 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 47 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,K;
long A[2<<17];
main()
{
	cin>>N>>K;
	for(int i=0;i<N;i++)cin>>A[i];
	long ans=0;
	K--;
	for(int i=K;i>=0;i--)
	{
		ans+=A[i];
		if(A[i]<=1)break;
	}
	for(int i=K;i<N;i++)
	{
		ans+=A[i];
		if(A[i]<=1)break;
	}
	cout<<ans-A[K]<<endl;
}
0