結果

問題 No.1137 Circles
ユーザー tentententen
提出日時 2020-08-17 21:49:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 831 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 2,984 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 53,820 KB
最終ジャッジ日時 2024-10-11 11:19:36
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
42,548 KB
testcase_01 AC 738 ms
53,324 KB
testcase_02 AC 217 ms
47,164 KB
testcase_03 AC 616 ms
49,308 KB
testcase_04 AC 653 ms
49,364 KB
testcase_05 AC 340 ms
48,892 KB
testcase_06 AC 699 ms
51,224 KB
testcase_07 AC 559 ms
49,392 KB
testcase_08 AC 665 ms
52,876 KB
testcase_09 AC 445 ms
49,196 KB
testcase_10 AC 560 ms
49,040 KB
testcase_11 AC 623 ms
49,484 KB
testcase_12 AC 791 ms
53,820 KB
testcase_13 AC 493 ms
49,220 KB
testcase_14 AC 831 ms
53,600 KB
testcase_15 AC 504 ms
49,244 KB
testcase_16 AC 585 ms
49,516 KB
testcase_17 AC 275 ms
48,272 KB
testcase_18 AC 680 ms
52,856 KB
testcase_19 AC 495 ms
49,172 KB
testcase_20 AC 454 ms
49,084 KB
testcase_21 AC 143 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int BASE = 100000;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] imos = new int[BASE * 4 + 1];
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    int r = sc.nextInt();
		    imos[x + BASE * 2 - r]++;
		    imos[x + BASE * 2 + r]--;
		}
		int max = imos[0];
		for (int i = 1; i < imos.length; i++) {
		    imos[i] += imos[i - 1];
		    max = Math.max(max, imos[i]);
		}
		System.out.println(max);
	}
}
0