結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kou6839kou6839
提出日時 2015-12-14 12:11:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,089 bytes
コンパイル時間 4,338 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 67,156 KB
最終ジャッジ日時 2023-10-13 16:26:57
合計ジャッジ時間 22,905 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
55,776 KB
testcase_01 AC 109 ms
56,100 KB
testcase_02 AC 109 ms
56,344 KB
testcase_03 AC 108 ms
55,952 KB
testcase_04 AC 108 ms
55,992 KB
testcase_05 AC 113 ms
56,032 KB
testcase_06 AC 113 ms
56,024 KB
testcase_07 AC 114 ms
55,628 KB
testcase_08 AC 110 ms
56,036 KB
testcase_09 WA -
testcase_10 AC 117 ms
56,268 KB
testcase_11 WA -
testcase_12 AC 113 ms
56,008 KB
testcase_13 AC 115 ms
56,108 KB
testcase_14 AC 484 ms
61,948 KB
testcase_15 AC 631 ms
65,112 KB
testcase_16 AC 439 ms
60,328 KB
testcase_17 AC 157 ms
56,160 KB
testcase_18 WA -
testcase_19 AC 552 ms
62,296 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 355 ms
60,352 KB
testcase_23 AC 599 ms
64,644 KB
testcase_24 WA -
testcase_25 AC 510 ms
61,136 KB
testcase_26 WA -
testcase_27 AC 576 ms
62,972 KB
testcase_28 WA -
testcase_29 AC 662 ms
64,844 KB
testcase_30 AC 201 ms
58,588 KB
testcase_31 WA -
testcase_32 AC 495 ms
60,756 KB
testcase_33 AC 512 ms
60,620 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
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){
			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