結果
問題 | No.1137 Circles |
ユーザー | tenten |
提出日時 | 2022-10-04 15:39:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 526 ms / 2,000 ms |
コード長 | 1,449 bytes |
コンパイル時間 | 2,419 ms |
コンパイル使用メモリ | 78,908 KB |
実行使用メモリ | 54,824 KB |
最終ジャッジ日時 | 2024-06-09 13:01:43 |
合計ジャッジ時間 | 10,816 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
37,188 KB |
testcase_01 | AC | 490 ms
54,124 KB |
testcase_02 | AC | 111 ms
39,780 KB |
testcase_03 | AC | 340 ms
50,292 KB |
testcase_04 | AC | 416 ms
52,528 KB |
testcase_05 | AC | 186 ms
44,608 KB |
testcase_06 | AC | 449 ms
53,284 KB |
testcase_07 | AC | 302 ms
50,020 KB |
testcase_08 | AC | 484 ms
53,420 KB |
testcase_09 | AC | 240 ms
48,852 KB |
testcase_10 | AC | 312 ms
50,520 KB |
testcase_11 | AC | 365 ms
51,068 KB |
testcase_12 | AC | 526 ms
54,824 KB |
testcase_13 | AC | 255 ms
49,296 KB |
testcase_14 | AC | 516 ms
54,656 KB |
testcase_15 | AC | 287 ms
49,064 KB |
testcase_16 | AC | 367 ms
51,060 KB |
testcase_17 | AC | 142 ms
41,268 KB |
testcase_18 | AC | 465 ms
53,208 KB |
testcase_19 | AC | 257 ms
49,168 KB |
testcase_20 | AC | 217 ms
46,632 KB |
testcase_21 | AC | 49 ms
37,012 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); TreeMap<Integer, Integer> counts = new TreeMap<>(); for (int i = 0; i < n; i++) { int x = sc.nextInt(); int r = sc.nextInt(); counts.put(x - r, counts.getOrDefault(x - r, 0) + 1); counts.put(x + r, counts.getOrDefault(x + r, 0) - 1); } int current = 0; int max = 0; for (int x : counts.keySet()) { current += counts.get(x); max = Math.max(max, current); } System.out.println(max); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }