結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:23:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,133 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 59,616 KB
最終ジャッジ日時 2024-11-30 10:44:13
合計ジャッジ時間 26,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,316 KB
testcase_01 AC 133 ms
41,332 KB
testcase_02 AC 135 ms
41,284 KB
testcase_03 AC 148 ms
41,552 KB
testcase_04 AC 143 ms
41,592 KB
testcase_05 AC 143 ms
41,636 KB
testcase_06 AC 135 ms
41,652 KB
testcase_07 AC 145 ms
41,392 KB
testcase_08 AC 237 ms
45,780 KB
testcase_09 AC 247 ms
46,004 KB
testcase_10 AC 189 ms
42,800 KB
testcase_11 AC 213 ms
44,288 KB
testcase_12 AC 460 ms
48,208 KB
testcase_13 AC 280 ms
46,768 KB
testcase_14 AC 1,133 ms
58,212 KB
testcase_15 AC 989 ms
54,120 KB
testcase_16 AC 1,018 ms
58,288 KB
testcase_17 AC 936 ms
53,640 KB
testcase_18 AC 471 ms
48,868 KB
testcase_19 AC 1,005 ms
54,168 KB
testcase_20 AC 392 ms
48,104 KB
testcase_21 AC 635 ms
48,868 KB
testcase_22 AC 144 ms
41,464 KB
testcase_23 AC 149 ms
41,652 KB
testcase_24 AC 121 ms
40,272 KB
testcase_25 AC 225 ms
45,756 KB
testcase_26 AC 333 ms
47,532 KB
testcase_27 AC 403 ms
48,132 KB
testcase_28 AC 140 ms
41,284 KB
testcase_29 AC 757 ms
49,272 KB
testcase_30 AC 846 ms
49,612 KB
testcase_31 AC 237 ms
45,784 KB
testcase_32 AC 788 ms
49,160 KB
testcase_33 AC 1,122 ms
59,616 KB
testcase_34 AC 561 ms
48,540 KB
testcase_35 AC 750 ms
49,280 KB
testcase_36 AC 864 ms
51,732 KB
testcase_37 AC 699 ms
48,916 KB
testcase_38 AC 964 ms
54,168 KB
testcase_39 AC 949 ms
53,372 KB
testcase_40 AC 613 ms
49,256 KB
testcase_41 AC 131 ms
41,076 KB
testcase_42 AC 584 ms
48,944 KB
testcase_43 AC 134 ms
41,328 KB
testcase_44 AC 143 ms
41,432 KB
testcase_45 AC 211 ms
44,768 KB
testcase_46 AC 125 ms
40,248 KB
testcase_47 AC 131 ms
41,324 KB
testcase_48 AC 133 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Scanner;

class Main{
    public static void main(String args[]) throws IOException{
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), k = sc.nextInt()-1;
        long x[] = new long[n];
        long a[] = new long[n];
        for(int i = 0; i < n; i++){
            x[i] = sc.nextLong();
        }
        for(int i = 0; i < n; i++){
            a[i] = sc.nextLong();
        }
        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