結果

問題 No.202 1円玉投げ
ユーザー aaaaaa
提出日時 2015-05-05 12:59:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 1,288 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 75,556 KB
最終ジャッジ日時 2024-06-01 19:51:24
合計ジャッジ時間 10,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
73,404 KB
testcase_01 AC 259 ms
68,192 KB
testcase_02 AC 58 ms
54,604 KB
testcase_03 AC 57 ms
54,744 KB
testcase_04 AC 56 ms
54,316 KB
testcase_05 AC 100 ms
56,060 KB
testcase_06 AC 236 ms
67,068 KB
testcase_07 AC 263 ms
67,828 KB
testcase_08 AC 258 ms
67,772 KB
testcase_09 AC 173 ms
63,152 KB
testcase_10 AC 131 ms
57,536 KB
testcase_11 AC 162 ms
62,804 KB
testcase_12 AC 165 ms
62,828 KB
testcase_13 AC 133 ms
57,652 KB
testcase_14 AC 104 ms
56,404 KB
testcase_15 AC 176 ms
62,992 KB
testcase_16 AC 250 ms
75,280 KB
testcase_17 AC 261 ms
75,540 KB
testcase_18 AC 259 ms
75,556 KB
testcase_19 AC 169 ms
62,828 KB
testcase_20 AC 239 ms
67,100 KB
testcase_21 AC 171 ms
63,276 KB
testcase_22 AC 69 ms
54,856 KB
testcase_23 AC 85 ms
55,132 KB
testcase_24 AC 78 ms
54,972 KB
testcase_25 AC 70 ms
54,936 KB
testcase_26 AC 66 ms
54,768 KB
testcase_27 AC 73 ms
55,084 KB
testcase_28 AC 67 ms
54,904 KB
testcase_29 AC 82 ms
55,100 KB
testcase_30 AC 81 ms
54,948 KB
testcase_31 AC 68 ms
54,608 KB
testcase_32 AC 69 ms
54,568 KB
testcase_33 AC 68 ms
54,904 KB
testcase_34 AC 68 ms
54,644 KB
testcase_35 AC 268 ms
75,440 KB
testcase_36 AC 278 ms
72,748 KB
testcase_37 AC 271 ms
68,492 KB
testcase_38 AC 277 ms
72,144 KB
testcase_39 AC 59 ms
54,772 KB
testcase_40 AC 58 ms
54,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package y202;

import java.io.IOException;
import java.util.ArrayList;

public class Main {
	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while(c != '-' && (c < '0' || c > '9')) c = System.in.read();
			if(c == '-') return -nextInt();
			int res = 0;
			while(c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}
	public static void main(String[] args) {
		int LEN = 1002;
		int N = nextInt();
		ArrayList<int[]> B[][] = new ArrayList[LEN][LEN];
		int ans = 0;
		L:for(int i = 0; i < N; i++) {
			int x = nextInt();
			int y = nextInt();
			int ix = x/20;
			int iy = y/20;
			for(int dx = -1; dx <= 1; dx++)
				for(int dy = -1; dy <= 1; dy++) {
					int tx = ix + dx;
					int ty = iy + dy;
					if(tx < 0 || LEN <= tx || ty < 0 || LEN <= ty || B[tx][ty] == null)
						continue;
					for(int c[]: B[tx][ty]) {
						int ox = c[0];
						int oy = c[1];
						if((ox - x)*(ox - x) + (oy - y)*(oy - y) < 400) {
							continue L;
						}
					}
				}
			
			if(B[ix][iy] == null) {
				B[ix][iy] = new ArrayList<int[]>();
			}
			B[ix][iy].add(new int[]{x, y});
			ans++;
		}
		System.out.println(ans);
	}
}
0