結果

問題 No.202 1円玉投げ
ユーザー kou6839kou6839
提出日時 2015-05-12 01:55:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 882 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 78,492 KB
実行使用メモリ 140,388 KB
最終ジャッジ日時 2024-12-22 08:57:51
合計ジャッジ時間 99,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 154 ms
122,936 KB
testcase_03 AC 153 ms
60,956 KB
testcase_04 AC 159 ms
60,828 KB
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 213 ms
57,232 KB
testcase_23 AC 215 ms
56,976 KB
testcase_24 AC 226 ms
57,160 KB
testcase_25 AC 213 ms
56,344 KB
testcase_26 AC 211 ms
56,544 KB
testcase_27 AC 209 ms
56,620 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 212 ms
56,972 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.File;
import java.util.*;

public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashSet<Integer> xSet = new HashSet<>();
		HashSet<Integer> ySet = new HashSet<>();
		int []x = new int[100020];
		int []y = new int[100020];
		int ans=0;
		for(int i=0;i<n;i++){
			boolean check = true;
			 x[i] = Integer.parseInt(sc.next());
			 y[i] = Integer.parseInt(sc.next());
			for(int xx=Math.max(0, x[i]-19);xx<=Math.min(20000, x[i]+19)&&check;xx++){
				int dy = (int) Math.sqrt(399-(i-xx)*(i-xx));
				for(int yy=Math.max(0, y[i]-dy);yy<=Math.min(20000, y[i]+dy);yy++){
					if(xSet.contains(xx)&&ySet.contains(yy)) check=false;
				}
			}
			if(check){
				ans++;
				xSet.add(x[i]);
				ySet.add(y[i]);
			}
		}
		System.out.println(ans);
	}
}
0