結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2019-06-11 22:23:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,036 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 61,944 KB
最終ジャッジ日時 2024-05-07 16:20:13
合計ジャッジ時間 23,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,076 KB
testcase_01 AC 108 ms
40,956 KB
testcase_02 AC 97 ms
39,520 KB
testcase_03 AC 128 ms
40,452 KB
testcase_04 AC 124 ms
41,152 KB
testcase_05 AC 123 ms
41,024 KB
testcase_06 AC 106 ms
40,008 KB
testcase_07 AC 129 ms
41,360 KB
testcase_08 AC 210 ms
45,632 KB
testcase_09 AC 213 ms
45,680 KB
testcase_10 AC 183 ms
42,760 KB
testcase_11 AC 198 ms
44,208 KB
testcase_12 AC 406 ms
48,304 KB
testcase_13 AC 233 ms
47,044 KB
testcase_14 AC 991 ms
58,484 KB
testcase_15 AC 993 ms
58,872 KB
testcase_16 AC 1,036 ms
61,944 KB
testcase_17 AC 804 ms
53,120 KB
testcase_18 AC 445 ms
48,148 KB
testcase_19 AC 847 ms
55,236 KB
testcase_20 AC 352 ms
47,752 KB
testcase_21 AC 596 ms
48,328 KB
testcase_22 AC 127 ms
41,736 KB
testcase_23 AC 126 ms
41,536 KB
testcase_24 AC 112 ms
41,076 KB
testcase_25 AC 190 ms
45,676 KB
testcase_26 AC 289 ms
47,840 KB
testcase_27 AC 355 ms
47,920 KB
testcase_28 AC 116 ms
41,152 KB
testcase_29 AC 614 ms
48,892 KB
testcase_30 AC 675 ms
49,076 KB
testcase_31 AC 217 ms
46,092 KB
testcase_32 AC 696 ms
49,360 KB
testcase_33 AC 939 ms
59,776 KB
testcase_34 AC 525 ms
48,352 KB
testcase_35 AC 701 ms
49,268 KB
testcase_36 AC 734 ms
50,900 KB
testcase_37 AC 591 ms
48,624 KB
testcase_38 AC 832 ms
54,200 KB
testcase_39 AC 853 ms
53,692 KB
testcase_40 AC 516 ms
48,920 KB
testcase_41 AC 109 ms
40,812 KB
testcase_42 AC 556 ms
49,896 KB
testcase_43 AC 121 ms
41,340 KB
testcase_44 AC 130 ms
41,312 KB
testcase_45 AC 186 ms
44,408 KB
testcase_46 AC 111 ms
41,220 KB
testcase_47 AC 116 ms
41,244 KB
testcase_48 AC 110 ms
40,896 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