結果

問題 No.1137 Circles
ユーザー RISE70226821RISE70226821
提出日時 2020-07-31 15:41:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 77,036 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-07-06 11:04:33
合計ジャッジ時間 13,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,132 KB
testcase_01 AC 679 ms
65,448 KB
testcase_02 AC 185 ms
56,752 KB
testcase_03 AC 550 ms
59,284 KB
testcase_04 AC 618 ms
59,276 KB
testcase_05 AC 307 ms
59,124 KB
testcase_06 AC 673 ms
63,400 KB
testcase_07 AC 548 ms
59,128 KB
testcase_08 AC 614 ms
63,524 KB
testcase_09 AC 370 ms
57,804 KB
testcase_10 AC 544 ms
59,496 KB
testcase_11 AC 558 ms
59,348 KB
testcase_12 AC 702 ms
68,096 KB
testcase_13 AC 428 ms
59,108 KB
testcase_14 AC 698 ms
65,776 KB
testcase_15 AC 430 ms
59,456 KB
testcase_16 AC 553 ms
59,496 KB
testcase_17 AC 234 ms
57,568 KB
testcase_18 AC 705 ms
63,116 KB
testcase_19 AC 448 ms
59,324 KB
testcase_20 AC 399 ms
59,264 KB
testcase_21 AC 107 ms
53,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] X = new int[N];
		int[] R = new int[N];
		for(int i = 0; i < N; i++){
			X[i] = sc.nextInt();
			R[i] = sc.nextInt();
		}
		
		// 円の左端、右端配列を作成
		int[] left = new int[N];
		int[] right = new int[N];
		for(int i = 0; i < N; i++){
			left[i] = X[i] - R[i];
			right[i] = X[i] + R[i];
		}
		Arrays.sort(left);
		Arrays.sort(right);
		
		// 重なり合う円のカウント
		int circle = 0;
		int max = 0;
		int indexL = 0;
		int indexR = 0;
		while(indexL < N && indexR < N){
			if(indexL == N){
				circle--;
				indexR++;
			}
			else if(indexR == N){
				circle++;
				indexL++;
			}
			else if(left[indexL] < right[indexR]){
				circle++;
				indexL++;
			}
			else{
				circle--;
				indexR++;
			}
			
			if(max < circle){
			  max = circle;
			}
		}
		
		
		// 出力
		System.out.println(max);
	}

}
0