結果
問題 | No.202 1円玉投げ |
ユーザー | fujisu |
提出日時 | 2015-05-09 06:25:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 2,543 ms / 5,000 ms |
コード長 | 3,380 bytes |
コンパイル時間 | 2,700 ms |
コンパイル使用メモリ | 78,744 KB |
実行使用メモリ | 73,548 KB |
最終ジャッジ日時 | 2024-12-22 08:49:51 |
合計ジャッジ時間 | 39,854 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,254 ms
63,412 KB |
testcase_01 | AC | 2,018 ms
63,624 KB |
testcase_02 | AC | 53 ms
49,708 KB |
testcase_03 | AC | 54 ms
50,192 KB |
testcase_04 | AC | 52 ms
49,692 KB |
testcase_05 | AC | 321 ms
59,332 KB |
testcase_06 | AC | 2,169 ms
71,728 KB |
testcase_07 | AC | 2,541 ms
63,276 KB |
testcase_08 | AC | 2,384 ms
63,376 KB |
testcase_09 | AC | 1,291 ms
61,340 KB |
testcase_10 | AC | 693 ms
67,912 KB |
testcase_11 | AC | 1,020 ms
63,620 KB |
testcase_12 | AC | 1,198 ms
61,404 KB |
testcase_13 | AC | 762 ms
67,964 KB |
testcase_14 | AC | 455 ms
67,792 KB |
testcase_15 | AC | 1,427 ms
69,860 KB |
testcase_16 | AC | 1,081 ms
63,656 KB |
testcase_17 | AC | 1,722 ms
73,548 KB |
testcase_18 | AC | 1,335 ms
71,132 KB |
testcase_19 | AC | 1,179 ms
61,232 KB |
testcase_20 | AC | 1,980 ms
72,036 KB |
testcase_21 | AC | 1,481 ms
70,032 KB |
testcase_22 | AC | 115 ms
52,508 KB |
testcase_23 | AC | 126 ms
55,324 KB |
testcase_24 | AC | 109 ms
54,664 KB |
testcase_25 | AC | 134 ms
55,280 KB |
testcase_26 | AC | 132 ms
55,148 KB |
testcase_27 | AC | 138 ms
55,020 KB |
testcase_28 | AC | 128 ms
55,244 KB |
testcase_29 | AC | 145 ms
55,000 KB |
testcase_30 | AC | 131 ms
55,428 KB |
testcase_31 | AC | 131 ms
55,068 KB |
testcase_32 | AC | 152 ms
55,356 KB |
testcase_33 | AC | 140 ms
55,356 KB |
testcase_34 | AC | 137 ms
55,140 KB |
testcase_35 | AC | 1,388 ms
72,316 KB |
testcase_36 | AC | 1,057 ms
63,840 KB |
testcase_37 | AC | 2,543 ms
63,300 KB |
testcase_38 | AC | 1,179 ms
63,604 KB |
testcase_39 | AC | 117 ms
52,620 KB |
testcase_40 | AC | 106 ms
51,912 KB |
ソースコード
import java.io.IOException; import java.util.HashSet; import java.util.InputMismatchException; public class Main { class Point implements Comparable<Point> { int x, y; Point(int x, int y) { this.x = x; this.y = y; } @Override public int compareTo(Point o) { return this.x != o.x ? this.x - o.x : this.y - o.y; } } boolean isIntersect(int x, int y, int a, int b) { return (x - a) * (x - a) + (y - b) * (y - b) < 400; } void run() { MyScanner sc = new MyScanner(); HashSet<Integer>[] set = new HashSet[20001]; for (int i = 0; i < 20001; i++) { set[i] = new HashSet<Integer>(); } int n = sc.nextInt(); int ans = 0; L: for (int i = 0; i < n; i++) { int x = sc.nextInt(); int y = sc.nextInt(); int minX = Math.max(x - 19, 0); int maxX = Math.min(x + 19, 20000); // int minY = Math.max(y - 19, 0); // int maxY = Math.min(y + 19, 20000); for (int j = minX; j <= maxX; j++) { int dy = (int) Math.sqrt(399 - (j - x) * (j - x) + 0.0001); // for (int k = minY; k <= maxY; k++) { int minY = Math.max(y - dy, 0); int maxY = Math.min(y + dy, 20000); for (int k = minY; k <= maxY; k++) { if (!isIntersect(x, y, j, k)) { continue; } if (!set[j].contains(k)) { continue; } if (isIntersect(x, y, j, k)) { continue L; } } } set[x].add(y); ans++; } System.out.println(ans); } public static void main(String[] args) { new Main().run(); } public void mapDebug(int[][] a) { System.out.println("--------map display---------"); for (int i = 0; i < a.length; i++) { for (int j = 0; j < a[i].length; j++) { System.out.printf("%3d ", a[i][j]); } System.out.println(); } System.out.println("----------------------------" + '\n'); } class MyScanner { int read() { try { return System.in.read(); } catch (IOException e) { throw new InputMismatchException(); } } boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } boolean isEndline(int c) { return c == '\n' || c == '\r' || c == -1; } int nextInt() { return Integer.parseInt(next()); } int[] nextIntArray(int n) { int[] array = new int[n]; for (int i = 0; i < n; i++) array[i] = nextInt(); return array; } long nextLong() { return Long.parseLong(next()); } long[] nextLongArray(int n) { long[] array = new long[n]; for (int i = 0; i < n; i++) array[i] = nextLong(); return array; } double nextDouble() { return Double.parseDouble(next()); } double[] nextDoubleArray(int n) { double[] array = new double[n]; for (int i = 0; i < n; i++) array[i] = nextDouble(); return array; } String next() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } String[] nextStringArray(int n) { String[] array = new String[n]; for (int i = 0; i < n; i++) array[i] = next(); return array; } String nextLine() { int c = read(); while (isEndline(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndline(c)); return res.toString(); } } }