結果

問題 No.202 1円玉投げ
ユーザー tentententen
提出日時 2022-08-19 18:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 864 ms / 5,000 ms
コード長 2,296 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 78,336 KB
実行使用メモリ 75,552 KB
最終ジャッジ日時 2024-06-01 21:48:17
合計ジャッジ時間 17,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 697 ms
62,488 KB
testcase_01 AC 615 ms
75,552 KB
testcase_02 AC 55 ms
50,380 KB
testcase_03 AC 55 ms
50,236 KB
testcase_04 AC 52 ms
50,300 KB
testcase_05 AC 141 ms
56,044 KB
testcase_06 AC 561 ms
73,196 KB
testcase_07 AC 627 ms
73,316 KB
testcase_08 AC 489 ms
61,104 KB
testcase_09 AC 354 ms
67,700 KB
testcase_10 AC 213 ms
59,988 KB
testcase_11 AC 320 ms
67,156 KB
testcase_12 AC 312 ms
67,072 KB
testcase_13 AC 220 ms
60,188 KB
testcase_14 AC 150 ms
56,144 KB
testcase_15 AC 347 ms
68,140 KB
testcase_16 AC 580 ms
65,840 KB
testcase_17 AC 864 ms
71,556 KB
testcase_18 AC 789 ms
71,324 KB
testcase_19 AC 322 ms
67,832 KB
testcase_20 AC 534 ms
71,664 KB
testcase_21 AC 319 ms
67,276 KB
testcase_22 AC 99 ms
51,460 KB
testcase_23 AC 95 ms
51,680 KB
testcase_24 AC 95 ms
51,552 KB
testcase_25 AC 98 ms
51,424 KB
testcase_26 AC 92 ms
51,572 KB
testcase_27 AC 88 ms
51,424 KB
testcase_28 AC 82 ms
51,552 KB
testcase_29 AC 96 ms
51,560 KB
testcase_30 AC 99 ms
51,680 KB
testcase_31 AC 83 ms
51,540 KB
testcase_32 AC 94 ms
51,256 KB
testcase_33 AC 100 ms
51,572 KB
testcase_34 AC 125 ms
53,248 KB
testcase_35 AC 627 ms
65,848 KB
testcase_36 AC 677 ms
62,552 KB
testcase_37 AC 624 ms
73,408 KB
testcase_38 AC 621 ms
65,656 KB
testcase_39 AC 64 ms
50,784 KB
testcase_40 AC 67 ms
50,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        ArrayList<ArrayList<ArrayList<Circle>>> grid = new ArrayList<>();
        for (int i = 0; i <= 100; i++) {
            grid.add(new ArrayList<>());
            for (int j = 0; j <= 100; j++) {
                grid.get(i).add(new ArrayList<>());
            }
        }
        int count = 0;
        while (n-- > 0) {
            Circle x = new Circle(sc.nextInt(), sc.nextInt());
            boolean enable = true;
            for (int i = Math.max(x.r - 1, 0); i <= Math.min(x.r + 1, 100) && enable; i++) {
                for (int j = Math.max(x.c - 1, 0); j <= Math.min(x.c + 1, 100) && enable; j++) {
                    for (Circle y : grid.get(i).get(j)) {
                        if (x.same(y)) {
                            enable = false;
                            break;
                        }
                    }
                }
            }
            if (enable) {
                count++;
                grid.get(x.r).get(x.c).add(x);
            }
        }
        System.out.println(count);
    }
    
    static class Circle {
        int x;
        int y;
        int r;
        int c;
        
        public Circle(int x, int y) {
            this.x = x;
            this.y = y;
            r = x / 200;
            c = y / 200;
        }
        
        public boolean same(Circle z) {
            return (x - z.x) * (x - z.x) + (y - z.y) * (y - z.y) < 400;
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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();
    }
}
0