結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kou6839kou6839
提出日時 2015-12-16 15:33:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 77,124 KB
実行使用メモリ 58,452 KB
最終ジャッジ日時 2024-07-06 22:06:21
合計ジャッジ時間 22,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,388 KB
testcase_01 AC 115 ms
41,164 KB
testcase_02 AC 116 ms
41,172 KB
testcase_03 AC 115 ms
41,016 KB
testcase_04 AC 104 ms
40,880 KB
testcase_05 AC 105 ms
41,428 KB
testcase_06 AC 117 ms
41,124 KB
testcase_07 AC 119 ms
41,520 KB
testcase_08 AC 105 ms
41,156 KB
testcase_09 AC 119 ms
41,556 KB
testcase_10 AC 119 ms
40,404 KB
testcase_11 AC 114 ms
40,048 KB
testcase_12 AC 119 ms
40,344 KB
testcase_13 AC 117 ms
41,384 KB
testcase_14 AC 575 ms
50,372 KB
testcase_15 AC 711 ms
58,452 KB
testcase_16 AC 544 ms
48,524 KB
testcase_17 AC 155 ms
41,760 KB
testcase_18 AC 461 ms
48,508 KB
testcase_19 AC 622 ms
50,596 KB
testcase_20 AC 684 ms
56,984 KB
testcase_21 AC 600 ms
50,636 KB
testcase_22 AC 443 ms
48,192 KB
testcase_23 AC 678 ms
53,060 KB
testcase_24 AC 457 ms
48,344 KB
testcase_25 AC 517 ms
49,072 KB
testcase_26 AC 798 ms
55,100 KB
testcase_27 AC 641 ms
51,644 KB
testcase_28 AC 614 ms
51,892 KB
testcase_29 AC 706 ms
57,320 KB
testcase_30 AC 194 ms
45,380 KB
testcase_31 AC 165 ms
42,976 KB
testcase_32 AC 565 ms
48,784 KB
testcase_33 AC 602 ms
48,224 KB
testcase_34 AC 503 ms
48,652 KB
testcase_35 AC 653 ms
52,924 KB
testcase_36 AC 203 ms
45,644 KB
testcase_37 AC 622 ms
50,012 KB
testcase_38 AC 586 ms
48,336 KB
testcase_39 AC 344 ms
48,036 KB
testcase_40 AC 694 ms
54,216 KB
testcase_41 AC 452 ms
47,940 KB
testcase_42 AC 660 ms
52,988 KB
testcase_43 AC 510 ms
48,248 KB
testcase_44 AC 625 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	static int[] dx = {1,0,-1,0};
	static int[] dy = {0,1,0,-1};
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		long p = sc.nextLong();
		long q = sc.nextLong();
		int n = sc.nextInt();
		if(p>q){
			long tmp = p;
			p = q;
			q = tmp;
		}
		int[] x = new int[n];
		int[] y = new int[n];
		for(int i=0;i<n;i++){
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		int ret = 0;
		if(q>0){
			long g = gcd(p, q);
			if(((p/g)+(q/g))%2==1){
				for(int i=0;i<n;i++){
					if(x[i]%g==0 && y[i]%g==0) ret++;
				}
			}else{
				for(int i=0;i<n;i++){
					if(x[i]%g==0 && y[i]%g==0 && Math.abs(x[i]/g+y[i]/g)%2==0){
						ret++;
					}
				}
			}
		}else{
			for(int i=0;i<n;i++) if(x[i]==0 && y[i]==0) ret++;
		}
		System.out.println(ret);
	}
}
0