結果
問題 | No.202 1円玉投げ |
ユーザー | hama_du |
提出日時 | 2015-05-12 10:41:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 533 ms / 5,000 ms |
コード長 | 4,776 bytes |
コンパイル時間 | 3,732 ms |
コンパイル使用メモリ | 79,492 KB |
実行使用メモリ | 101,056 KB |
最終ジャッジ日時 | 2024-06-01 20:13:19 |
合計ジャッジ時間 | 19,363 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 419 ms
94,856 KB |
testcase_01 | AC | 455 ms
99,784 KB |
testcase_02 | AC | 205 ms
74,272 KB |
testcase_03 | AC | 209 ms
74,192 KB |
testcase_04 | AC | 204 ms
74,156 KB |
testcase_05 | AC | 261 ms
78,056 KB |
testcase_06 | AC | 531 ms
93,580 KB |
testcase_07 | AC | 533 ms
93,700 KB |
testcase_08 | AC | 519 ms
94,316 KB |
testcase_09 | AC | 439 ms
93,108 KB |
testcase_10 | AC | 287 ms
78,276 KB |
testcase_11 | AC | 316 ms
86,124 KB |
testcase_12 | AC | 387 ms
91,252 KB |
testcase_13 | AC | 292 ms
78,940 KB |
testcase_14 | AC | 261 ms
78,224 KB |
testcase_15 | AC | 405 ms
93,000 KB |
testcase_16 | AC | 406 ms
99,888 KB |
testcase_17 | AC | 443 ms
100,696 KB |
testcase_18 | AC | 427 ms
94,676 KB |
testcase_19 | AC | 404 ms
92,648 KB |
testcase_20 | AC | 434 ms
93,104 KB |
testcase_21 | AC | 408 ms
93,364 KB |
testcase_22 | AC | 212 ms
74,448 KB |
testcase_23 | AC | 221 ms
74,172 KB |
testcase_24 | AC | 213 ms
74,280 KB |
testcase_25 | AC | 212 ms
74,252 KB |
testcase_26 | AC | 216 ms
74,316 KB |
testcase_27 | AC | 216 ms
74,048 KB |
testcase_28 | AC | 211 ms
74,156 KB |
testcase_29 | AC | 214 ms
74,164 KB |
testcase_30 | AC | 212 ms
74,236 KB |
testcase_31 | AC | 207 ms
74,068 KB |
testcase_32 | AC | 212 ms
74,024 KB |
testcase_33 | AC | 207 ms
74,248 KB |
testcase_34 | AC | 213 ms
74,036 KB |
testcase_35 | AC | 424 ms
99,884 KB |
testcase_36 | AC | 425 ms
99,780 KB |
testcase_37 | AC | 466 ms
94,012 KB |
testcase_38 | AC | 422 ms
101,056 KB |
testcase_39 | AC | 204 ms
74,276 KB |
testcase_40 | AC | 212 ms
74,280 KB |
ソースコード
package yukicoder; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.InputMismatchException; import java.util.List; /** * Created by dhamada on 15/05/12. */ public class P202 { public static void main(String[] args) { InputReader in = new InputReader(System.in); PrintWriter out = new PrintWriter(System.out); List<Integer>[][] bucket = new List[1001][1001]; for (int i = 0 ; i < 1001 ; i++) { for (int j = 0 ; j < 1001 ; j++) { bucket[i][j] = new ArrayList<>(); } } int cnt = 0; int n = in.nextInt(); int[][] pos = new int[n][2]; for (int i = 0 ; i < n ; i++) { int x = in.nextInt(); int y = in.nextInt(); pos[i][0] = x; pos[i][1] = y; int bx = x / 20; int by = y / 20; boolean conflict = false; sch: for (int xi = bx-1 ; xi <= bx+1 ; xi++) { for (int yi = by-1 ; yi <= by+1 ; yi++) { if (xi < 0 || yi < 0 || xi >= 1001 || yi >= 1001) { continue; } for (int pi : bucket[xi][yi]) { if (conflict(pos[pi][0], pos[pi][1], x, y)) { conflict = true; break sch; } } } } if (!conflict) { cnt++; bucket[bx][by].add(i); } } out.println(cnt); out.flush(); } static void debug(Object... o) { System.err.println(Arrays.deepToString(o)); } static boolean conflict(int x1, int y1, int x2, int y2) { int dx = x1 - x2; int dy = y1 - y2; return (dx * dx + dy * dy) < 400; } static class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; public InputReader(InputStream stream) { this.stream = stream; } private int next() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public char nextChar() { int c = next(); while (isSpaceChar(c)) c = next(); if ('a' <= c && c <= 'z') { return (char)c; } if ('A' <= c && c <= 'Z') { return (char)c; } throw new InputMismatchException(); } public String nextToken() { int c = next(); while (isSpaceChar(c)) c = next(); StringBuilder res = new StringBuilder(); do { res.append((char)c); c = next(); } while (!isSpaceChar(c)); return res.toString(); } public int nextInt() { int c = next(); while (isSpaceChar(c)) c = next(); int sgn = 1; if (c == '-') { sgn = -1; c = next(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = next(); } while (!isSpaceChar(c)); return res * sgn; } public long nextLong() { int c = next(); while (isSpaceChar(c)) c = next(); long sgn = 1; if (c == '-') { sgn = -1; c = next(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = next(); } while (!isSpaceChar(c)); return res * sgn; } public boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } }