結果

問題 No.849 yuki国の分割統治
ユーザー 37zigen37zigen
提出日時 2019-07-06 01:27:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,247 ms / 2,000 ms
コード長 1,414 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 80,432 KB
実行使用メモリ 81,804 KB
最終ジャッジ日時 2024-10-06 23:35:16
合計ジャッジ時間 27,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
54,828 KB
testcase_01 AC 168 ms
54,892 KB
testcase_02 AC 181 ms
55,032 KB
testcase_03 AC 170 ms
55,096 KB
testcase_04 AC 169 ms
54,924 KB
testcase_05 AC 173 ms
54,844 KB
testcase_06 AC 168 ms
54,952 KB
testcase_07 AC 1,092 ms
69,960 KB
testcase_08 AC 1,067 ms
73,436 KB
testcase_09 AC 1,079 ms
71,616 KB
testcase_10 AC 1,087 ms
69,780 KB
testcase_11 AC 1,045 ms
70,328 KB
testcase_12 AC 1,045 ms
69,880 KB
testcase_13 AC 1,146 ms
72,104 KB
testcase_14 AC 1,079 ms
71,956 KB
testcase_15 AC 1,028 ms
70,528 KB
testcase_16 AC 1,247 ms
75,628 KB
testcase_17 AC 1,075 ms
69,936 KB
testcase_18 AC 1,184 ms
76,744 KB
testcase_19 AC 1,105 ms
72,172 KB
testcase_20 AC 1,191 ms
74,372 KB
testcase_21 AC 1,043 ms
69,932 KB
testcase_22 AC 1,170 ms
76,112 KB
testcase_23 AC 1,186 ms
75,424 KB
testcase_24 AC 1,080 ms
68,964 KB
testcase_25 AC 1,232 ms
81,804 KB
testcase_26 AC 160 ms
54,924 KB
testcase_27 AC 158 ms
55,280 KB
testcase_28 AC 159 ms
54,960 KB
testcase_29 AC 160 ms
54,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	void run() {

		Scanner sc = new Scanner(System.in);

		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();
		long d = sc.nextLong();
		int N = sc.nextInt();
		HashSet<String> set = new HashSet<>();
		long det = a * d - b * c;
		det = Math.abs(det);
		if (det != 0) {
			for (int i = 0; i < N; ++i) {
				long x = sc.nextLong() % det;
				long y = sc.nextLong() % det;
				long s = ((d * x - c * y) % det + det) % det;
				long t = ((-b * x + a * y) % det + det) % det;
				set.add(s + ":" + t);
			}
		} else {
			if (a < 0) {
				a *= -1;
				b *= -1;
			}
			if (c < 0) {
				c *= -1;
				d *= -1;
			}
			long gcd = a != 0 ? gcd(a, c) : gcd(b, d);
			long div = a != 0 ? a / gcd : b / gcd;
			a /= div;
			b /= div;
			for (int i = 0; i < N; ++i) {
				long x = sc.nextLong();
				long y = sc.nextLong();
				long s = 0, t = 0;
				if (a != 0) {
					s = x % a;
					t = y - x / a * b;
				} else {
					t = y % b;
					s = x - y / b * a;
				}
				set.add(s + ":" + t);
			}
		}
		System.out.println(set.size());
	}

	long gcd(long a, long b) {
		if (a > b) {
			return gcd(b, a);
		}
		if (a == 0)
			return b;
		return gcd(a, b % a);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0