結果

問題 No.202 1円玉投げ
ユーザー kou6839kou6839
提出日時 2015-05-12 02:08:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,394 ms / 5,000 ms
コード長 1,123 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 73,200 KB
最終ジャッジ日時 2024-12-22 09:04:21
合計ジャッジ時間 49,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,143 ms
68,648 KB
testcase_01 AC 2,525 ms
71,080 KB
testcase_02 AC 138 ms
53,712 KB
testcase_03 AC 145 ms
53,908 KB
testcase_04 AC 140 ms
54,228 KB
testcase_05 AC 454 ms
59,784 KB
testcase_06 AC 2,931 ms
72,696 KB
testcase_07 AC 3,012 ms
72,640 KB
testcase_08 AC 2,989 ms
72,704 KB
testcase_09 AC 1,999 ms
70,580 KB
testcase_10 AC 1,251 ms
68,204 KB
testcase_11 AC 1,663 ms
70,792 KB
testcase_12 AC 1,718 ms
70,744 KB
testcase_13 AC 1,277 ms
68,684 KB
testcase_14 AC 419 ms
60,044 KB
testcase_15 AC 1,959 ms
70,808 KB
testcase_16 AC 1,250 ms
68,152 KB
testcase_17 AC 1,518 ms
69,852 KB
testcase_18 AC 1,441 ms
73,200 KB
testcase_19 AC 1,701 ms
70,120 KB
testcase_20 AC 2,620 ms
72,964 KB
testcase_21 AC 1,572 ms
70,520 KB
testcase_22 AC 211 ms
54,600 KB
testcase_23 AC 214 ms
54,288 KB
testcase_24 AC 215 ms
54,808 KB
testcase_25 AC 214 ms
54,928 KB
testcase_26 AC 241 ms
57,268 KB
testcase_27 AC 215 ms
54,888 KB
testcase_28 AC 230 ms
56,784 KB
testcase_29 AC 231 ms
57,384 KB
testcase_30 AC 226 ms
56,768 KB
testcase_31 AC 215 ms
54,544 KB
testcase_32 AC 240 ms
56,880 KB
testcase_33 AC 243 ms
58,400 KB
testcase_34 AC 222 ms
57,304 KB
testcase_35 AC 1,314 ms
72,876 KB
testcase_36 AC 1,418 ms
71,636 KB
testcase_37 AC 3,394 ms
72,708 KB
testcase_38 AC 1,244 ms
72,208 KB
testcase_39 AC 200 ms
54,496 KB
testcase_40 AC 201 ms
54,408 KB
権限があれば一括ダウンロードができます

ソースコード

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<>();
        HashSet<Integer>[] sets = new HashSet[20200];
        int ans=0;
        int x,y;
        for(int k=0;k<n;k++){
            boolean check = true;
             x = Integer.parseInt(sc.next());
             y = Integer.parseInt(sc.next());
            for(int i=Math.max(0, x-19);(i<=Math.min(20000, x+19)&&check);i++){
                int dy = (int) Math.sqrt(399-(i-x)*(i-x)+0.0001);
                for(int j=Math.max(0, y-dy);j<=Math.min(20000, y+dy);j++){
                    if(sets[i]!=null && sets[i].contains(j)) check=false;
                }
            }
            if(check){
                ans++;
                if(sets[x]==null) sets[x]=new HashSet<>();
                sets[x].add(y);
                }
        }
        System.out.println(ans);
    }
}
0