結果

問題 No.871 かえるのうた
ユーザー tentententen
提出日時 2021-03-16 10:32:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,427 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 77,568 KB
実行使用メモリ 65,852 KB
最終ジャッジ日時 2024-11-07 21:06:32
合計ジャッジ時間 13,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,496 KB
testcase_01 WA -
testcase_02 AC 48 ms
36,756 KB
testcase_03 AC 47 ms
36,980 KB
testcase_04 AC 48 ms
36,640 KB
testcase_05 AC 51 ms
36,972 KB
testcase_06 WA -
testcase_07 AC 53 ms
36,836 KB
testcase_08 AC 90 ms
39,192 KB
testcase_09 AC 93 ms
39,476 KB
testcase_10 AC 53 ms
37,024 KB
testcase_11 AC 67 ms
37,984 KB
testcase_12 AC 156 ms
44,892 KB
testcase_13 AC 103 ms
39,688 KB
testcase_14 AC 377 ms
62,500 KB
testcase_15 AC 386 ms
65,652 KB
testcase_16 AC 394 ms
65,076 KB
testcase_17 AC 376 ms
61,636 KB
testcase_18 AC 174 ms
45,188 KB
testcase_19 WA -
testcase_20 AC 133 ms
41,284 KB
testcase_21 AC 241 ms
51,280 KB
testcase_22 AC 50 ms
37,076 KB
testcase_23 AC 49 ms
36,724 KB
testcase_24 AC 48 ms
36,920 KB
testcase_25 AC 72 ms
38,448 KB
testcase_26 AC 110 ms
41,036 KB
testcase_27 AC 130 ms
42,244 KB
testcase_28 AC 50 ms
36,744 KB
testcase_29 AC 230 ms
51,564 KB
testcase_30 AC 309 ms
55,436 KB
testcase_31 AC 94 ms
39,064 KB
testcase_32 AC 280 ms
54,160 KB
testcase_33 WA -
testcase_34 AC 171 ms
44,472 KB
testcase_35 AC 281 ms
54,412 KB
testcase_36 AC 315 ms
57,448 KB
testcase_37 AC 247 ms
51,564 KB
testcase_38 AC 344 ms
58,952 KB
testcase_39 WA -
testcase_40 AC 226 ms
52,064 KB
testcase_41 AC 49 ms
36,864 KB
testcase_42 AC 225 ms
52,116 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 49 ms
36,512 KB
testcase_47 AC 48 ms
36,908 KB
testcase_48 AC 48 ms
36,984 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);
		        left--;
		        flag = true;
		    }
		    while (right < n - 1 && frogs[right + 1].position <= max) {
		        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