結果

問題 No.202 1円玉投げ
ユーザー kou6839kou6839
提出日時 2015-05-12 01:57:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 872 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 138,796 KB
最終ジャッジ日時 2024-12-22 09:01:26
合計ジャッジ時間 98,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 139 ms
60,784 KB
testcase_03 AC 141 ms
123,312 KB
testcase_04 AC 140 ms
60,912 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 219 ms
57,000 KB
testcase_23 AC 218 ms
57,304 KB
testcase_24 AC 220 ms
57,108 KB
testcase_25 AC 209 ms
57,184 KB
testcase_26 AC 203 ms
54,336 KB
testcase_27 AC 190 ms
54,528 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 203 ms
54,600 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[n];
		int []y = new int[n];
		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