結果

問題 No.202 1円玉投げ
ユーザー tentententen
提出日時 2021-01-20 12:02:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,071 ms / 5,000 ms
コード長 1,259 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 78,740 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2024-06-01 21:43:17
合計ジャッジ時間 25,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 990 ms
70,528 KB
testcase_01 AC 871 ms
68,196 KB
testcase_02 AC 118 ms
54,248 KB
testcase_03 AC 105 ms
52,748 KB
testcase_04 AC 116 ms
54,112 KB
testcase_05 AC 269 ms
59,088 KB
testcase_06 AC 832 ms
68,020 KB
testcase_07 AC 912 ms
68,476 KB
testcase_08 AC 843 ms
68,696 KB
testcase_09 AC 654 ms
67,824 KB
testcase_10 AC 443 ms
59,920 KB
testcase_11 AC 605 ms
67,876 KB
testcase_12 AC 566 ms
67,860 KB
testcase_13 AC 458 ms
60,116 KB
testcase_14 AC 275 ms
59,032 KB
testcase_15 AC 675 ms
67,904 KB
testcase_16 AC 1,005 ms
71,276 KB
testcase_17 AC 991 ms
71,304 KB
testcase_18 AC 997 ms
71,404 KB
testcase_19 AC 621 ms
67,912 KB
testcase_20 AC 770 ms
68,028 KB
testcase_21 AC 570 ms
67,996 KB
testcase_22 AC 185 ms
56,924 KB
testcase_23 AC 182 ms
56,616 KB
testcase_24 AC 182 ms
56,676 KB
testcase_25 AC 179 ms
56,628 KB
testcase_26 AC 184 ms
56,680 KB
testcase_27 AC 184 ms
56,596 KB
testcase_28 AC 182 ms
56,556 KB
testcase_29 AC 181 ms
56,860 KB
testcase_30 AC 191 ms
56,612 KB
testcase_31 AC 194 ms
56,600 KB
testcase_32 AC 179 ms
56,696 KB
testcase_33 AC 195 ms
56,776 KB
testcase_34 AC 206 ms
57,064 KB
testcase_35 AC 1,025 ms
71,472 KB
testcase_36 AC 1,071 ms
71,456 KB
testcase_37 AC 925 ms
68,868 KB
testcase_38 AC 1,003 ms
70,796 KB
testcase_39 AC 165 ms
54,340 KB
testcase_40 AC 161 ms
54,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int w = 101;
		int h = 101;
		ArrayList<ArrayList<Point>> field = new ArrayList<>();
		for (int i = 0; i < w * h; i++) {
		    field.add(new ArrayList<>());
		}
		int count = 0;
		for (int i = 0; i < n; i++) {
		    Point p = new Point(sc.nextInt(), sc.nextInt());
		    int x = p.x / 200;
		    int y = p.y / 200;
		    boolean canSet = true;
		    for (int j = Math.max(0, x - 1); j <= Math.min(100, x + 1) && canSet; j++) {
		        for (int k = Math.max(0, y - 1); k <= Math.min(100, y + 1) && canSet; k++) {
		            for (Point z : field.get(j * w + k)) {
		                canSet = z.diff(p);
		                if (!canSet) {
		                    break;
		                }
		            }
		        }
		    }
		    if (canSet) {
		        field.get(x * w + y).add(p);
		        count++;
		    }
		}
		System.out.println(count);
	}
	
	static class Point {
	    int x;
	    int y;
	    
	    public Point(int x, int y) {
	        this.x = x;
	        this.y = y;
	    }
	    
	    public boolean diff(Point p) {
	        return (x - p.x) * (x - p.x) + (y - p.y) * (y - p.y) >= 20 * 20;
	    }
	}
}
0