結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:19:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 76,712 KB
実行使用メモリ 66,616 KB
最終ジャッジ日時 2024-05-07 16:18:55
合計ジャッジ時間 10,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,308 KB
testcase_01 AC 46 ms
36,320 KB
testcase_02 AC 46 ms
36,488 KB
testcase_03 AC 46 ms
36,360 KB
testcase_04 AC 46 ms
36,672 KB
testcase_05 AC 46 ms
36,688 KB
testcase_06 AC 44 ms
36,688 KB
testcase_07 AC 45 ms
36,608 KB
testcase_08 AC 69 ms
38,564 KB
testcase_09 AC 85 ms
38,520 KB
testcase_10 AC 50 ms
36,612 KB
testcase_11 AC 61 ms
37,644 KB
testcase_12 AC 144 ms
45,284 KB
testcase_13 AC 84 ms
39,256 KB
testcase_14 AC 327 ms
60,240 KB
testcase_15 AC 327 ms
66,616 KB
testcase_16 AC 338 ms
64,540 KB
testcase_17 AC 317 ms
56,688 KB
testcase_18 AC 149 ms
44,824 KB
testcase_19 AC 332 ms
66,260 KB
testcase_20 AC 114 ms
40,848 KB
testcase_21 AC 234 ms
50,828 KB
testcase_22 AC 46 ms
36,748 KB
testcase_23 AC 46 ms
36,620 KB
testcase_24 AC 45 ms
36,608 KB
testcase_25 AC 72 ms
37,896 KB
testcase_26 AC 103 ms
40,664 KB
testcase_27 AC 120 ms
42,148 KB
testcase_28 AC 46 ms
36,616 KB
testcase_29 AC 220 ms
50,460 KB
testcase_30 AC 282 ms
55,796 KB
testcase_31 AC 78 ms
38,776 KB
testcase_32 AC 277 ms
53,404 KB
testcase_33 AC 290 ms
60,536 KB
testcase_34 AC 156 ms
45,276 KB
testcase_35 AC 253 ms
50,900 KB
testcase_36 AC 292 ms
54,352 KB
testcase_37 AC 237 ms
50,828 KB
testcase_38 AC 295 ms
54,192 KB
testcase_39 AC 302 ms
54,008 KB
testcase_40 AC 202 ms
50,192 KB
testcase_41 AC 46 ms
36,560 KB
testcase_42 AC 197 ms
50,168 KB
testcase_43 AC 47 ms
36,632 KB
testcase_44 AC 46 ms
36,664 KB
testcase_45 AC 56 ms
37,248 KB
testcase_46 AC 46 ms
36,736 KB
testcase_47 AC 44 ms
36,600 KB
testcase_48 AC 45 ms
36,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;

class Main{
    public static void main(String args[]) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line[] = br.readLine().split(" ");
        int n = Integer.parseInt(line[0]), k = Integer.parseInt(line[1])-1;
        long x[] = new long[n];
        long a[] = new long[n];
        line = br.readLine().split(" ");
        for(int i = 0; i < n; i++){
            x[i] = Long.parseLong(line[i]);
        }
        line = br.readLine().split(" ");
        for(int i = 0; i < n; i++){
            a[i] = Long.parseLong(line[i]);
        }
        int l = k, r = k;
        long ld = x[k]-a[k], rd = x[k]+a[k];
        boolean update = true;
        while(update){
            update = false;
            while(l-1 >= 0 && ld <= x[l-1]){
                update = true;
                l--;
                ld = Math.min(ld, x[l]-a[l]);
                rd = Math.max(rd, x[l]+a[l]);
            }
            while(r+1 < n && x[r+1] <= rd){
                update = true;
                r++;
                rd = Math.max(rd, x[r]+a[r]);
                ld = Math.min(ld, x[r]-a[r]);
            }
        }
        System.out.println(r-l+1);
    }
}
0