結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kou6839kou6839
提出日時 2015-12-14 12:23:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 77,008 KB
実行使用メモリ 58,048 KB
最終ジャッジ日時 2024-09-15 12:27:23
合計ジャッジ時間 26,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,992 KB
testcase_01 AC 129 ms
41,240 KB
testcase_02 AC 118 ms
40,020 KB
testcase_03 AC 133 ms
41,316 KB
testcase_04 AC 132 ms
41,304 KB
testcase_05 AC 137 ms
41,292 KB
testcase_06 AC 137 ms
41,420 KB
testcase_07 AC 138 ms
41,416 KB
testcase_08 AC 136 ms
41,240 KB
testcase_09 WA -
testcase_10 AC 137 ms
41,264 KB
testcase_11 AC 135 ms
41,344 KB
testcase_12 AC 135 ms
41,184 KB
testcase_13 AC 123 ms
40,124 KB
testcase_14 AC 710 ms
49,588 KB
testcase_15 AC 855 ms
58,048 KB
testcase_16 AC 612 ms
48,408 KB
testcase_17 AC 169 ms
41,908 KB
testcase_18 WA -
testcase_19 AC 711 ms
50,580 KB
testcase_20 WA -
testcase_21 AC 715 ms
49,316 KB
testcase_22 AC 452 ms
47,932 KB
testcase_23 AC 814 ms
52,804 KB
testcase_24 WA -
testcase_25 AC 687 ms
48,796 KB
testcase_26 WA -
testcase_27 AC 733 ms
52,380 KB
testcase_28 WA -
testcase_29 AC 878 ms
55,900 KB
testcase_30 AC 225 ms
45,124 KB
testcase_31 WA -
testcase_32 AC 672 ms
48,680 KB
testcase_33 AC 644 ms
48,616 KB
testcase_34 WA -
testcase_35 AC 785 ms
52,640 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 435 ms
47,832 KB
testcase_40 WA -
testcase_41 AC 540 ms
48,160 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
	}
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		long p = sc.nextLong();
		long q = sc.nextLong();
		int n = sc.nextInt();
		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();
		}
		if(gcd(p, q)==1 && (p%2==0 || q%2==0)){
			System.out.println(n);
		}else if(p==0&&q==0){
			int ans = 0;
			for(int i=0;i<n;i++){
				if( x[i]==0&&y[i]==0) ans++;
			}
			System.out.println(ans);
		}else if(p==0){
			int ans = 0;
			for(int i=0;i<n;i++){
				if( y[i]%q==0 && x[i]%q==0) ans++;
			}
			System.out.println(ans);
		}else if(q==0){
			int ans = 0;
			for(int i=0;i<n;i++){
				if( y[i]%p==0 && x[i]%p==0) ans++;
			}
			System.out.println(ans);
		}else{
			int ans =0;
			long sa = gcd(p, q);
			for(int i=0;i<n;i++){
				if( (x[i]%sa==0 || y[i]%sa==0) && Math.abs(x[i]-y[i])%(sa*2)==0) ans++;
			}
			System.out.println(ans);
		}
	} 
}
0