結果

問題 No.202 1円玉投げ
ユーザー GrenacheGrenache
提出日時 2016-06-02 00:17:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,083 ms / 5,000 ms
コード長 2,070 bytes
コンパイル時間 4,612 ms
コンパイル使用メモリ 80,608 KB
実行使用メモリ 67,348 KB
最終ジャッジ日時 2024-12-22 10:21:16
合計ジャッジ時間 33,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 740 ms
55,000 KB
testcase_01 AC 1,648 ms
67,280 KB
testcase_02 AC 60 ms
37,204 KB
testcase_03 AC 62 ms
37,128 KB
testcase_04 AC 62 ms
36,912 KB
testcase_05 AC 245 ms
45,168 KB
testcase_06 AC 1,764 ms
66,844 KB
testcase_07 AC 1,875 ms
67,348 KB
testcase_08 AC 1,928 ms
67,160 KB
testcase_09 AC 1,393 ms
62,584 KB
testcase_10 AC 501 ms
56,228 KB
testcase_11 AC 1,082 ms
61,696 KB
testcase_12 AC 1,044 ms
65,936 KB
testcase_13 AC 549 ms
57,796 KB
testcase_14 AC 262 ms
45,348 KB
testcase_15 AC 1,246 ms
62,196 KB
testcase_16 AC 611 ms
54,804 KB
testcase_17 AC 842 ms
55,408 KB
testcase_18 AC 825 ms
55,448 KB
testcase_19 AC 1,162 ms
62,564 KB
testcase_20 AC 1,651 ms
63,568 KB
testcase_21 AC 1,217 ms
61,916 KB
testcase_22 AC 122 ms
39,660 KB
testcase_23 AC 124 ms
39,208 KB
testcase_24 AC 119 ms
39,060 KB
testcase_25 AC 119 ms
39,308 KB
testcase_26 AC 122 ms
39,540 KB
testcase_27 AC 124 ms
39,388 KB
testcase_28 AC 121 ms
39,088 KB
testcase_29 AC 119 ms
39,208 KB
testcase_30 AC 120 ms
39,536 KB
testcase_31 AC 112 ms
38,940 KB
testcase_32 AC 137 ms
39,164 KB
testcase_33 AC 138 ms
40,880 KB
testcase_34 AC 126 ms
39,588 KB
testcase_35 AC 738 ms
55,500 KB
testcase_36 AC 790 ms
54,632 KB
testcase_37 AC 2,083 ms
64,720 KB
testcase_38 AC 725 ms
54,708 KB
testcase_39 AC 89 ms
38,052 KB
testcase_40 AC 71 ms
37,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.Map.*;


public class Main_yukicoder202_1 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        int n = sc.nextInt();

        SortedMap<Integer, SortedSet<Integer>> xy = new TreeMap<>();

        int ret = 0;
        out:
        for (int i = 0; i < n; i++) {
        	int x = sc.nextInt();
        	int y = sc.nextInt();

        	for (Entry<Integer, SortedSet<Integer>> e : xy.subMap(x - 20, x + 20).entrySet()) {
        		int xtmp = e.getKey();
        		for (int ytmp : e.getValue().subSet(y - 20, y + 20)) {
        			if ((x - xtmp) * (x - xtmp) + (y - ytmp) * (y - ytmp) < 400) {
        				continue out;
        			}
        		}
        	}

			if (xy.containsKey(x)) {
				xy.get(x).add(y);
			} else {
				TreeSet<Integer> tmp = new TreeSet<>();
				tmp.add(y);
				xy.put(x, tmp);
			}
			ret++;
        }

        pr.println(ret);

        pr.close();
        sc.close();
    }

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0