結果

問題 No.849 yuki国の分割統治
ユーザー 37zigen37zigen
提出日時 2019-07-06 01:12:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,303 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 83,480 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-10-06 23:32:46
合計ジャッジ時間 21,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,716 KB
testcase_01 AC 149 ms
54,716 KB
testcase_02 AC 159 ms
54,912 KB
testcase_03 AC 152 ms
54,548 KB
testcase_04 AC 165 ms
54,892 KB
testcase_05 AC 145 ms
54,968 KB
testcase_06 AC 145 ms
54,676 KB
testcase_07 RE -
testcase_08 AC 886 ms
73,156 KB
testcase_09 AC 899 ms
71,188 KB
testcase_10 AC 916 ms
69,780 KB
testcase_11 AC 804 ms
71,676 KB
testcase_12 AC 928 ms
68,440 KB
testcase_13 AC 991 ms
70,728 KB
testcase_14 AC 941 ms
71,736 KB
testcase_15 AC 847 ms
68,952 KB
testcase_16 AC 1,075 ms
76,184 KB
testcase_17 AC 917 ms
69,336 KB
testcase_18 AC 985 ms
77,196 KB
testcase_19 AC 941 ms
71,552 KB
testcase_20 AC 968 ms
73,276 KB
testcase_21 AC 853 ms
68,592 KB
testcase_22 AC 992 ms
75,764 KB
testcase_23 AC 946 ms
73,836 KB
testcase_24 AC 886 ms
68,760 KB
testcase_25 AC 1,006 ms
81,408 KB
testcase_26 AC 124 ms
54,436 KB
testcase_27 AC 135 ms
54,628 KB
testcase_28 AC 135 ms
54,412 KB
testcase_29 AC 137 ms
54,596 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 / gcd;
			a /= div;
			b /= div;
			for (int i = 0; i < N; ++i) {
				long x = sc.nextLong();
				long y = sc.nextLong();
				long s = x % a;
				long t = y - x / a * b;
				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