結果

問題 No.1007 コイン集め
ユーザー htensaihtensai
提出日時 2020-03-24 14:47:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 586 ms / 1,500 ms
コード長 972 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 49,740 KB
最終ジャッジ日時 2024-06-10 05:56:29
合計ジャッジ時間 9,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,468 KB
testcase_01 AC 111 ms
40,988 KB
testcase_02 AC 113 ms
41,216 KB
testcase_03 AC 100 ms
40,312 KB
testcase_04 AC 112 ms
41,472 KB
testcase_05 AC 98 ms
40,380 KB
testcase_06 AC 113 ms
41,544 KB
testcase_07 AC 120 ms
41,288 KB
testcase_08 AC 106 ms
40,676 KB
testcase_09 AC 111 ms
41,252 KB
testcase_10 AC 96 ms
39,972 KB
testcase_11 AC 111 ms
41,356 KB
testcase_12 AC 572 ms
48,788 KB
testcase_13 AC 565 ms
48,740 KB
testcase_14 AC 568 ms
48,896 KB
testcase_15 AC 386 ms
46,916 KB
testcase_16 AC 492 ms
48,556 KB
testcase_17 AC 492 ms
48,444 KB
testcase_18 AC 586 ms
49,740 KB
testcase_19 AC 485 ms
48,372 KB
testcase_20 AC 477 ms
48,360 KB
testcase_21 AC 541 ms
48,716 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