結果

問題 No.202 1円玉投げ
ユーザー aaaaaa
提出日時 2015-05-05 12:59:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 335 ms / 5,000 ms
コード長 1,288 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 64,796 KB
最終ジャッジ日時 2024-12-22 08:32:16
合計ジャッジ時間 10,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
61,348 KB
testcase_01 AC 246 ms
58,332 KB
testcase_02 AC 56 ms
43,776 KB
testcase_03 AC 57 ms
43,924 KB
testcase_04 AC 59 ms
44,128 KB
testcase_05 AC 104 ms
45,812 KB
testcase_06 AC 303 ms
58,452 KB
testcase_07 AC 335 ms
58,048 KB
testcase_08 AC 253 ms
58,448 KB
testcase_09 AC 173 ms
52,244 KB
testcase_10 AC 128 ms
46,464 KB
testcase_11 AC 160 ms
52,216 KB
testcase_12 AC 161 ms
52,156 KB
testcase_13 AC 126 ms
46,976 KB
testcase_14 AC 106 ms
45,456 KB
testcase_15 AC 179 ms
52,872 KB
testcase_16 AC 271 ms
63,512 KB
testcase_17 AC 258 ms
63,980 KB
testcase_18 AC 258 ms
63,572 KB
testcase_19 AC 160 ms
52,012 KB
testcase_20 AC 218 ms
57,636 KB
testcase_21 AC 163 ms
52,076 KB
testcase_22 AC 68 ms
44,052 KB
testcase_23 AC 83 ms
44,664 KB
testcase_24 AC 67 ms
44,140 KB
testcase_25 AC 80 ms
44,732 KB
testcase_26 AC 65 ms
44,212 KB
testcase_27 AC 77 ms
44,568 KB
testcase_28 AC 73 ms
44,140 KB
testcase_29 AC 71 ms
44,668 KB
testcase_30 AC 73 ms
44,188 KB
testcase_31 AC 81 ms
44,144 KB
testcase_32 AC 72 ms
44,612 KB
testcase_33 AC 70 ms
44,080 KB
testcase_34 AC 81 ms
44,444 KB
testcase_35 AC 265 ms
64,664 KB
testcase_36 AC 274 ms
62,264 KB
testcase_37 AC 256 ms
58,640 KB
testcase_38 AC 285 ms
64,796 KB
testcase_39 AC 59 ms
44,224 KB
testcase_40 AC 58 ms
44,160 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