結果

問題 No.1007 コイン集め
ユーザー htensaihtensai
提出日時 2020-03-24 14:47:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 775 ms / 1,500 ms
コード長 972 bytes
コンパイル時間 2,721 ms
コンパイル使用メモリ 77,228 KB
実行使用メモリ 59,840 KB
最終ジャッジ日時 2024-12-31 15:02:25
合計ジャッジ時間 13,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,016 KB
testcase_01 AC 146 ms
54,152 KB
testcase_02 AC 147 ms
54,116 KB
testcase_03 AC 145 ms
53,900 KB
testcase_04 AC 150 ms
53,952 KB
testcase_05 AC 155 ms
54,208 KB
testcase_06 AC 153 ms
53,908 KB
testcase_07 AC 153 ms
54,272 KB
testcase_08 AC 151 ms
54,180 KB
testcase_09 AC 148 ms
54,264 KB
testcase_10 AC 149 ms
54,260 KB
testcase_11 AC 149 ms
53,912 KB
testcase_12 AC 769 ms
59,420 KB
testcase_13 AC 768 ms
59,404 KB
testcase_14 AC 775 ms
59,400 KB
testcase_15 AC 641 ms
59,164 KB
testcase_16 AC 628 ms
59,424 KB
testcase_17 AC 640 ms
59,528 KB
testcase_18 AC 694 ms
59,656 KB
testcase_19 AC 657 ms
59,840 KB
testcase_20 AC 693 ms
59,808 KB
testcase_21 AC 722 ms
59,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n + 2];
        for (int i = 1; i <= n; i++) {
            arr[i] = sc.nextInt();
        }
        if (arr[k] == 0) {
            System.out.println(0);
            return;
        }
        long left = 0;
        int idx = k - 1;
        while (arr[idx] > 1) {
            left += arr[idx];
            idx--;
        }
        if (arr[idx] == 1) {
            left++;
        }
        long right = 0;
        idx = k + 1;
        while (arr[idx] > 1) {
            right += arr[idx];
            idx++;
        }
        if (arr[idx] == 1) {
            right++;
        }
        if (arr[k] == 1) {
            System.out.println(Math.max(left, right) + 1);
        } else {
            System.out.println(left + right + arr[k]);
        }
    }
}
0