結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー GrenacheGrenache
提出日時 2015-12-15 00:06:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,534 bytes
コンパイル時間 3,727 ms
コンパイル使用メモリ 78,408 KB
実行使用メモリ 48,896 KB
最終ジャッジ日時 2024-09-15 12:47:03
合計ジャッジ時間 13,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,780 KB
testcase_01 AC 52 ms
36,852 KB
testcase_02 AC 52 ms
37,132 KB
testcase_03 AC 55 ms
36,644 KB
testcase_04 AC 53 ms
37,028 KB
testcase_05 AC 52 ms
37,172 KB
testcase_06 AC 53 ms
36,684 KB
testcase_07 AC 52 ms
37,072 KB
testcase_08 AC 52 ms
36,780 KB
testcase_09 AC 53 ms
37,196 KB
testcase_10 AC 55 ms
37,084 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 53 ms
37,036 KB
testcase_14 WA -
testcase_15 AC 325 ms
47,320 KB
testcase_16 AC 217 ms
44,872 KB
testcase_17 AC 59 ms
37,036 KB
testcase_18 AC 239 ms
44,420 KB
testcase_19 WA -
testcase_20 AC 342 ms
46,012 KB
testcase_21 WA -
testcase_22 AC 169 ms
44,004 KB
testcase_23 AC 304 ms
47,012 KB
testcase_24 AC 166 ms
43,816 KB
testcase_25 WA -
testcase_26 AC 346 ms
46,356 KB
testcase_27 WA -
testcase_28 AC 284 ms
45,948 KB
testcase_29 AC 339 ms
48,004 KB
testcase_30 AC 116 ms
40,308 KB
testcase_31 AC 89 ms
38,604 KB
testcase_32 AC 243 ms
44,808 KB
testcase_33 WA -
testcase_34 AC 221 ms
44,388 KB
testcase_35 WA -
testcase_36 AC 126 ms
40,676 KB
testcase_37 AC 280 ms
45,444 KB
testcase_38 AC 246 ms
45,124 KB
testcase_39 WA -
testcase_40 AC 330 ms
48,700 KB
testcase_41 WA -
testcase_42 AC 327 ms
48,896 KB
testcase_43 AC 230 ms
44,340 KB
testcase_44 AC 308 ms
46,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Iterator;


public class Main_yukicoder321_1 {

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

        int p = sc.nextInt();
        int q = sc.nextInt();
        if (p < q) {
        	int tmp = p;
        	p = q;
        	q = tmp;
        }

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

        	if (p == 0) {
        		if (x == 0 && y == 0) {
        			ret++;
        		}
        	} else if (q == 0) {
        		if (x % p == 0 && y % p == 0) {
        			ret++;
        		}
        	} else {
        		int tmp;
        		tmp = gcd(p, q);

        		if (p / tmp % 2 == 0 || q / tmp % 2 == 0) {
        			if (x % tmp == 0 && y % tmp == 0) {
        				ret++;
        			}
        		} else {
            		if (x % (2 * tmp) == 0 && y % (2 * tmp) == 0 && (x + y) % (2 * tmp) == 0 && (x - y) % (2 * tmp) == 0) {
            			ret++;
            		}
        		}
        	}
        }

        pr.println(ret);

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

	private static int gcd(int n, int m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}

	@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