結果

問題 No.202 1円玉投げ
ユーザー 37zigen37zigen
提出日時 2018-05-27 20:11:52
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 78,508 KB
実行使用メモリ 83,260 KB
最終ジャッジ日時 2024-06-01 21:05:03
合計ジャッジ時間 20,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,805 ms
81,904 KB
testcase_01 TLE -
testcase_02 AC 121 ms
53,952 KB
testcase_03 AC 122 ms
54,092 KB
testcase_04 AC 138 ms
54,184 KB
testcase_05 AC 752 ms
64,368 KB
testcase_06 AC 4,460 ms
78,316 KB
testcase_07 AC 4,949 ms
76,348 KB
testcase_08 TLE -
testcase_09 AC 2,824 ms
74,416 KB
testcase_10 AC 1,527 ms
71,668 KB
testcase_11 AC 2,253 ms
71,508 KB
testcase_12 AC 2,490 ms
72,024 KB
testcase_13 AC 1,605 ms
71,044 KB
testcase_14 AC 773 ms
64,600 KB
testcase_15 AC 2,722 ms
72,096 KB
testcase_16 AC 4,389 ms
81,624 KB
testcase_17 AC 4,537 ms
83,260 KB
testcase_18 AC 4,425 ms
83,136 KB
testcase_19 AC 2,780 ms
72,408 KB
testcase_20 AC 3,933 ms
74,424 KB
testcase_21 AC 2,674 ms
72,184 KB
testcase_22 AC 233 ms
57,632 KB
testcase_23 AC 241 ms
57,804 KB
testcase_24 AC 217 ms
57,256 KB
testcase_25 AC 263 ms
57,480 KB
testcase_26 AC 232 ms
57,940 KB
testcase_27 AC 241 ms
58,004 KB
testcase_28 AC 230 ms
57,548 KB
testcase_29 AC 238 ms
57,568 KB
testcase_30 AC 274 ms
58,548 KB
testcase_31 AC 197 ms
57,732 KB
testcase_32 AC 297 ms
58,400 KB
testcase_33 AC 242 ms
57,932 KB
testcase_34 AC 326 ms
59,684 KB
testcase_35 AC 3,633 ms
82,460 KB
testcase_36 AC 4,590 ms
82,052 KB
testcase_37 TLE -
testcase_38 AC 3,893 ms
81,652 KB
testcase_39 AC 188 ms
57,756 KB
testcase_40 AC 193 ms
57,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] X = new int[N];
		int[] Y = new int[N];
		HashSet<Long> set = new HashSet<>();
		loop1: for (int i = 0; i < N; ++i) {
			X[i] = sc.nextInt();
			Y[i] = sc.nextInt();
			for (int x = -20 + X[i]; x <= 20 + X[i]; ++x) {
				for (int y = -20 + Y[i]; y <= 20 + Y[i]; ++y) {
					if ((x - X[i]) * (x - X[i]) + (y - Y[i]) * (y - Y[i]) >= 400)
						continue;
					if (set.contains((long) x << 32 | y)) {
						continue loop1;
					}
				}
			}
			set.add((long) X[i] << 32 | Y[i]);
		}
		System.out.println(set.size());
	}
}
0