結果

問題 No.871 かえるのうた
ユーザー tentententen
提出日時 2021-03-16 10:41:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 1,597 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 65,800 KB
最終ジャッジ日時 2024-11-30 11:06:08
合計ジャッジ時間 11,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,088 KB
testcase_01 AC 50 ms
36,976 KB
testcase_02 AC 49 ms
37,092 KB
testcase_03 AC 50 ms
36,708 KB
testcase_04 AC 51 ms
37,088 KB
testcase_05 AC 50 ms
37,300 KB
testcase_06 AC 47 ms
36,976 KB
testcase_07 AC 48 ms
36,960 KB
testcase_08 AC 84 ms
38,740 KB
testcase_09 AC 86 ms
39,000 KB
testcase_10 AC 52 ms
37,076 KB
testcase_11 AC 58 ms
37,796 KB
testcase_12 AC 151 ms
44,788 KB
testcase_13 AC 95 ms
39,588 KB
testcase_14 AC 369 ms
62,820 KB
testcase_15 AC 398 ms
65,800 KB
testcase_16 AC 408 ms
65,200 KB
testcase_17 AC 374 ms
61,308 KB
testcase_18 AC 166 ms
44,552 KB
testcase_19 AC 397 ms
65,752 KB
testcase_20 AC 134 ms
41,288 KB
testcase_21 AC 231 ms
51,420 KB
testcase_22 AC 49 ms
36,696 KB
testcase_23 AC 46 ms
36,720 KB
testcase_24 AC 45 ms
36,664 KB
testcase_25 AC 66 ms
38,284 KB
testcase_26 AC 108 ms
40,812 KB
testcase_27 AC 125 ms
42,096 KB
testcase_28 AC 48 ms
36,700 KB
testcase_29 AC 213 ms
51,724 KB
testcase_30 AC 299 ms
55,420 KB
testcase_31 AC 93 ms
39,096 KB
testcase_32 AC 274 ms
54,084 KB
testcase_33 AC 350 ms
61,456 KB
testcase_34 AC 170 ms
45,560 KB
testcase_35 AC 277 ms
54,352 KB
testcase_36 AC 322 ms
57,764 KB
testcase_37 AC 258 ms
51,584 KB
testcase_38 AC 326 ms
58,460 KB
testcase_39 AC 347 ms
57,312 KB
testcase_40 AC 225 ms
52,476 KB
testcase_41 AC 47 ms
36,700 KB
testcase_42 AC 195 ms
52,372 KB
testcase_43 AC 46 ms
36,716 KB
testcase_44 AC 47 ms
36,912 KB
testcase_45 AC 57 ms
38,100 KB
testcase_46 AC 47 ms
36,992 KB
testcase_47 AC 48 ms
37,048 KB
testcase_48 AC 45 ms
36,996 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