結果

問題 No.1007 コイン集め
ユーザー 37zigen37zigen
提出日時 2020-03-06 23:15:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 691 ms / 1,500 ms
コード長 871 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 78,456 KB
実行使用メモリ 49,620 KB
最終ジャッジ日時 2024-10-14 09:44:36
合計ジャッジ時間 11,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,228 KB
testcase_01 AC 129 ms
41,408 KB
testcase_02 AC 131 ms
41,172 KB
testcase_03 AC 133 ms
41,260 KB
testcase_04 AC 132 ms
41,272 KB
testcase_05 AC 133 ms
41,092 KB
testcase_06 AC 132 ms
41,112 KB
testcase_07 AC 131 ms
41,252 KB
testcase_08 AC 132 ms
41,192 KB
testcase_09 AC 129 ms
41,048 KB
testcase_10 AC 133 ms
41,088 KB
testcase_11 AC 134 ms
41,276 KB
testcase_12 AC 672 ms
48,616 KB
testcase_13 AC 643 ms
48,892 KB
testcase_14 AC 656 ms
49,092 KB
testcase_15 AC 587 ms
48,648 KB
testcase_16 AC 607 ms
48,980 KB
testcase_17 AC 561 ms
48,864 KB
testcase_18 AC 691 ms
49,032 KB
testcase_19 AC 648 ms
48,884 KB
testcase_20 AC 652 ms
49,268 KB
testcase_21 AC 655 ms
49,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int K=sc.nextInt();
		long[] A=new long[N];
		for(int i=0;i<N;++i) A[i]=sc.nextLong();
		--K;
		if(A[K]==0){
			System.out.println(0);
			return;
		}
		int r=K;
		int l=K;
		while(r+1<A.length&&A[r+1]>=1&&(r==K||A[r]>=2))++r;
		while(l-1>=0&&A[l-1]>=1&&(l==K||A[l]>=2))--l;
		long rc=0,lc=0;
		for(int i=K+1;i<=r;++i)rc+=A[i];
		for(int i=K-1;i>=l;--i)lc+=A[i];
		if(A[K]<=1){
			System.out.println(A[K]+Math.max(rc,lc));
		}else{
			System.out.println(A[K]+rc+lc);
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0