結果

問題 No.871 かえるのうた
ユーザー htensaihtensai
提出日時 2019-12-09 22:40:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 929 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 61,504 KB
最終ジャッジ日時 2024-06-23 07:24:36
合計ジャッジ時間 23,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,252 KB
testcase_01 WA -
testcase_02 AC 100 ms
40,136 KB
testcase_03 AC 121 ms
41,280 KB
testcase_04 AC 128 ms
41,384 KB
testcase_05 AC 126 ms
41,620 KB
testcase_06 WA -
testcase_07 AC 134 ms
41,148 KB
testcase_08 AC 217 ms
45,784 KB
testcase_09 AC 210 ms
45,620 KB
testcase_10 AC 173 ms
42,720 KB
testcase_11 AC 181 ms
44,196 KB
testcase_12 AC 403 ms
48,388 KB
testcase_13 AC 233 ms
46,684 KB
testcase_14 AC 958 ms
60,088 KB
testcase_15 AC 836 ms
54,572 KB
testcase_16 AC 979 ms
59,520 KB
testcase_17 AC 798 ms
53,736 KB
testcase_18 AC 417 ms
48,064 KB
testcase_19 WA -
testcase_20 AC 338 ms
47,704 KB
testcase_21 AC 616 ms
48,660 KB
testcase_22 AC 124 ms
41,412 KB
testcase_23 AC 121 ms
41,144 KB
testcase_24 AC 104 ms
40,400 KB
testcase_25 AC 197 ms
45,804 KB
testcase_26 AC 296 ms
47,740 KB
testcase_27 AC 366 ms
47,752 KB
testcase_28 AC 117 ms
41,060 KB
testcase_29 AC 625 ms
48,960 KB
testcase_30 AC 686 ms
49,192 KB
testcase_31 AC 200 ms
45,564 KB
testcase_32 AC 693 ms
49,080 KB
testcase_33 WA -
testcase_34 AC 486 ms
48,408 KB
testcase_35 AC 633 ms
49,016 KB
testcase_36 AC 730 ms
52,540 KB
testcase_37 AC 623 ms
49,288 KB
testcase_38 AC 814 ms
54,080 KB
testcase_39 WA -
testcase_40 AC 498 ms
48,860 KB
testcase_41 AC 106 ms
41,180 KB
testcase_42 AC 510 ms
48,908 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 121 ms
41,248 KB
testcase_47 AC 119 ms
41,200 KB
testcase_48 AC 116 ms
41,300 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() - 1;
        long[] idxes = new long[n];
        for (int i = 0; i < n; i++) {
            idxes[i] = sc.nextLong();
        }
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
        }
        long left = idxes[k] - values[k];
        long right = idxes[k] + values[k];
        int plus = k;
        while (plus < n - 1 && idxes[plus + 1] <= right) {
            plus++;
            right = Math.max(right, idxes[plus] + values[plus]);
        }
        int minus = k;
        while(minus > 0 && idxes[minus - 1] >= left) {
            minus--;
            left = Math.min(left, idxes[minus] - values[minus]);
        }
        System.out.println(plus - minus + 1);
    }
}
0