結果

問題 No.871 かえるのうた
ユーザー tentententen
提出日時 2021-03-16 10:41:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 1,597 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 66,140 KB
最終ジャッジ日時 2024-05-07 16:43:38
合計ジャッジ時間 11,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,036 KB
testcase_01 AC 46 ms
36,868 KB
testcase_02 AC 47 ms
37,332 KB
testcase_03 AC 46 ms
37,292 KB
testcase_04 AC 47 ms
37,272 KB
testcase_05 AC 46 ms
37,184 KB
testcase_06 AC 48 ms
37,112 KB
testcase_07 AC 47 ms
37,068 KB
testcase_08 AC 84 ms
39,236 KB
testcase_09 AC 90 ms
39,672 KB
testcase_10 AC 50 ms
37,440 KB
testcase_11 AC 60 ms
37,688 KB
testcase_12 AC 150 ms
44,996 KB
testcase_13 AC 97 ms
40,148 KB
testcase_14 AC 351 ms
63,284 KB
testcase_15 AC 436 ms
65,988 KB
testcase_16 AC 362 ms
65,120 KB
testcase_17 AC 365 ms
61,556 KB
testcase_18 AC 158 ms
45,556 KB
testcase_19 AC 369 ms
66,140 KB
testcase_20 AC 126 ms
41,556 KB
testcase_21 AC 209 ms
52,272 KB
testcase_22 AC 47 ms
37,036 KB
testcase_23 AC 49 ms
37,092 KB
testcase_24 AC 46 ms
36,688 KB
testcase_25 AC 65 ms
38,464 KB
testcase_26 AC 107 ms
40,900 KB
testcase_27 AC 121 ms
42,444 KB
testcase_28 AC 46 ms
37,096 KB
testcase_29 AC 211 ms
52,096 KB
testcase_30 AC 292 ms
55,364 KB
testcase_31 AC 76 ms
39,028 KB
testcase_32 AC 256 ms
54,420 KB
testcase_33 AC 341 ms
61,656 KB
testcase_34 AC 167 ms
45,676 KB
testcase_35 AC 257 ms
54,680 KB
testcase_36 AC 297 ms
58,068 KB
testcase_37 AC 228 ms
51,408 KB
testcase_38 AC 331 ms
58,588 KB
testcase_39 AC 323 ms
57,736 KB
testcase_40 AC 209 ms
52,820 KB
testcase_41 AC 47 ms
37,096 KB
testcase_42 AC 221 ms
52,612 KB
testcase_43 AC 47 ms
36,808 KB
testcase_44 AC 46 ms
37,232 KB
testcase_45 AC 60 ms
37,956 KB
testcase_46 AC 47 ms
37,216 KB
testcase_47 AC 46 ms
37,164 KB
testcase_48 AC 47 ms
36,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 2);
		int n = Integer.parseInt(first[0]);
		int k = Integer.parseInt(first[1]) - 1;
		String[] second = br.readLine().split(" ", n);
		String[] third = br.readLine().split(" ", n);
		Frog[] frogs = new Frog[n];
		for (int i = 0; i < n; i++) {
		    frogs[i] = new Frog(Long.parseLong(second[i]), Long.parseLong(third[i]));
		}
		int left = k;
		int right = k;
		long min = frogs[k].position - frogs[k].strength;
		long max = frogs[k].position + frogs[k].strength;
		boolean flag = true;
		while (flag) {
		    flag = false;
		    while (left > 0 && frogs[left - 1].position >= min) {
		        min = Math.min(min, frogs[left - 1].position - frogs[left - 1].strength);
		        max = Math.max(max, frogs[left - 1].position + frogs[left - 1].strength);
		        left--;
		        flag = true;
		    }
		    while (right < n - 1 && frogs[right + 1].position <= max) {
		        min = Math.min(min, frogs[right + 1].position - frogs[right + 1].strength);
		        max = Math.max(max, frogs[right + 1].position + frogs[right + 1].strength);
		        right++;
		        flag = true;
		    }
		}
		System.out.println(right - left + 1);
   }
   
   static class Frog {
       long position;
       long strength;
       
       public Frog(long position, long strength) {
           this.position = position;
           this.strength = strength;
       }
   }
}
0