結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-08-30 19:17:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 76,372 KB
実行使用メモリ 67,144 KB
最終ジャッジ日時 2024-11-30 10:44:25
合計ジャッジ時間 11,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,048 KB
testcase_01 AC 53 ms
37,028 KB
testcase_02 AC 53 ms
37,000 KB
testcase_03 AC 55 ms
36,956 KB
testcase_04 AC 54 ms
37,236 KB
testcase_05 AC 53 ms
37,164 KB
testcase_06 AC 52 ms
37,104 KB
testcase_07 AC 53 ms
37,156 KB
testcase_08 AC 89 ms
38,612 KB
testcase_09 AC 95 ms
39,176 KB
testcase_10 AC 58 ms
37,064 KB
testcase_11 AC 74 ms
38,128 KB
testcase_12 AC 167 ms
45,828 KB
testcase_13 AC 106 ms
39,724 KB
testcase_14 AC 352 ms
60,836 KB
testcase_15 AC 376 ms
67,144 KB
testcase_16 AC 366 ms
64,736 KB
testcase_17 AC 346 ms
57,104 KB
testcase_18 AC 175 ms
45,796 KB
testcase_19 AC 392 ms
66,968 KB
testcase_20 AC 118 ms
41,076 KB
testcase_21 AC 272 ms
51,888 KB
testcase_22 AC 53 ms
37,168 KB
testcase_23 AC 54 ms
37,092 KB
testcase_24 AC 53 ms
36,960 KB
testcase_25 AC 84 ms
38,676 KB
testcase_26 AC 121 ms
41,064 KB
testcase_27 AC 131 ms
42,232 KB
testcase_28 AC 53 ms
37,020 KB
testcase_29 AC 254 ms
51,696 KB
testcase_30 AC 313 ms
55,840 KB
testcase_31 AC 96 ms
39,144 KB
testcase_32 AC 285 ms
53,996 KB
testcase_33 AC 319 ms
60,616 KB
testcase_34 AC 175 ms
45,324 KB
testcase_35 AC 274 ms
50,472 KB
testcase_36 AC 319 ms
54,772 KB
testcase_37 AC 273 ms
51,996 KB
testcase_38 AC 341 ms
54,760 KB
testcase_39 AC 325 ms
54,652 KB
testcase_40 AC 230 ms
51,300 KB
testcase_41 AC 52 ms
37,240 KB
testcase_42 AC 217 ms
50,848 KB
testcase_43 AC 53 ms
36,992 KB
testcase_44 AC 53 ms
37,036 KB
testcase_45 AC 70 ms
37,988 KB
testcase_46 AC 53 ms
36,984 KB
testcase_47 AC 52 ms
37,104 KB
testcase_48 AC 53 ms
37,004 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 buf = br.readLine();
            if(buf.charAt(0) == ' ' || buf.charAt(buf.length()-1) == ' ') System.exit(1);
        String line[] = buf.split(" ");
        int n = Integer.parseInt(line[0]), k = Integer.parseInt(line[1])-1;
        long x[] = new long[n];
        long a[] = new long[n];
        buf = br.readLine();
            if(buf.charAt(0) == ' ' || buf.charAt(buf.length()-1) == ' ') System.exit(1);
        line = buf.split(" ");
        for(int i = 0; i < n; i++){
            x[i] = Long.parseLong(line[i]);
        }
        buf = br.readLine();
            if(buf.charAt(0) == ' ' || buf.charAt(buf.length()-1) == ' ') System.exit(1);
        line = buf.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