結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:19:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 76,504 KB
実行使用メモリ 66,828 KB
最終ジャッジ日時 2024-11-30 10:42:58
合計ジャッジ時間 11,584 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,228 KB
testcase_01 AC 52 ms
37,100 KB
testcase_02 AC 52 ms
36,832 KB
testcase_03 AC 52 ms
36,964 KB
testcase_04 AC 53 ms
36,980 KB
testcase_05 AC 53 ms
36,956 KB
testcase_06 AC 54 ms
36,584 KB
testcase_07 AC 54 ms
37,128 KB
testcase_08 AC 91 ms
39,008 KB
testcase_09 AC 92 ms
38,812 KB
testcase_10 AC 57 ms
37,220 KB
testcase_11 AC 67 ms
38,064 KB
testcase_12 AC 158 ms
44,896 KB
testcase_13 AC 96 ms
39,412 KB
testcase_14 AC 360 ms
60,516 KB
testcase_15 AC 368 ms
66,364 KB
testcase_16 AC 371 ms
64,776 KB
testcase_17 AC 342 ms
56,976 KB
testcase_18 AC 173 ms
45,240 KB
testcase_19 AC 392 ms
66,828 KB
testcase_20 AC 129 ms
41,268 KB
testcase_21 AC 259 ms
50,868 KB
testcase_22 AC 55 ms
37,240 KB
testcase_23 AC 54 ms
37,092 KB
testcase_24 AC 53 ms
36,852 KB
testcase_25 AC 84 ms
38,384 KB
testcase_26 AC 121 ms
40,860 KB
testcase_27 AC 127 ms
42,208 KB
testcase_28 AC 53 ms
36,920 KB
testcase_29 AC 242 ms
50,704 KB
testcase_30 AC 304 ms
55,680 KB
testcase_31 AC 89 ms
39,296 KB
testcase_32 AC 274 ms
53,904 KB
testcase_33 AC 339 ms
60,048 KB
testcase_34 AC 176 ms
45,152 KB
testcase_35 AC 280 ms
50,776 KB
testcase_36 AC 303 ms
54,400 KB
testcase_37 AC 267 ms
50,908 KB
testcase_38 AC 336 ms
54,348 KB
testcase_39 AC 348 ms
54,868 KB
testcase_40 AC 215 ms
50,092 KB
testcase_41 AC 54 ms
37,108 KB
testcase_42 AC 230 ms
50,068 KB
testcase_43 AC 54 ms
36,908 KB
testcase_44 AC 54 ms
36,972 KB
testcase_45 AC 67 ms
37,748 KB
testcase_46 AC 54 ms
37,016 KB
testcase_47 AC 54 ms
36,980 KB
testcase_48 AC 54 ms
36,840 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