結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-08-30 19:17:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 67,188 KB
最終ジャッジ日時 2024-05-07 16:20:25
合計ジャッジ時間 11,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,956 KB
testcase_01 AC 47 ms
37,176 KB
testcase_02 AC 48 ms
36,816 KB
testcase_03 AC 47 ms
36,952 KB
testcase_04 AC 46 ms
36,984 KB
testcase_05 AC 47 ms
37,164 KB
testcase_06 AC 47 ms
37,204 KB
testcase_07 AC 47 ms
37,360 KB
testcase_08 AC 84 ms
38,676 KB
testcase_09 AC 76 ms
38,964 KB
testcase_10 AC 53 ms
37,272 KB
testcase_11 AC 72 ms
38,056 KB
testcase_12 AC 148 ms
45,488 KB
testcase_13 AC 101 ms
39,500 KB
testcase_14 AC 332 ms
60,476 KB
testcase_15 AC 340 ms
67,188 KB
testcase_16 AC 345 ms
64,692 KB
testcase_17 AC 322 ms
57,304 KB
testcase_18 AC 158 ms
45,004 KB
testcase_19 AC 353 ms
66,796 KB
testcase_20 AC 117 ms
40,948 KB
testcase_21 AC 274 ms
51,372 KB
testcase_22 AC 49 ms
37,204 KB
testcase_23 AC 49 ms
37,096 KB
testcase_24 AC 48 ms
36,984 KB
testcase_25 AC 78 ms
38,500 KB
testcase_26 AC 98 ms
40,624 KB
testcase_27 AC 107 ms
41,972 KB
testcase_28 AC 47 ms
36,968 KB
testcase_29 AC 224 ms
50,872 KB
testcase_30 AC 289 ms
55,260 KB
testcase_31 AC 90 ms
39,068 KB
testcase_32 AC 288 ms
53,828 KB
testcase_33 AC 311 ms
60,336 KB
testcase_34 AC 164 ms
45,400 KB
testcase_35 AC 261 ms
51,324 KB
testcase_36 AC 285 ms
54,944 KB
testcase_37 AC 255 ms
51,328 KB
testcase_38 AC 330 ms
54,956 KB
testcase_39 AC 309 ms
54,028 KB
testcase_40 AC 203 ms
50,196 KB
testcase_41 AC 47 ms
37,188 KB
testcase_42 AC 221 ms
51,640 KB
testcase_43 AC 48 ms
37,164 KB
testcase_44 AC 46 ms
37,320 KB
testcase_45 AC 68 ms
37,992 KB
testcase_46 AC 46 ms
37,192 KB
testcase_47 AC 46 ms
36,932 KB
testcase_48 AC 46 ms
36,672 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