結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー 37zigen37zigen
提出日時 2016-05-21 15:05:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,783 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-10-06 16:39:20
合計ジャッジ時間 21,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 121 ms
53,924 KB
testcase_02 AC 121 ms
53,776 KB
testcase_03 AC 115 ms
53,792 KB
testcase_04 AC 126 ms
53,704 KB
testcase_05 RE -
testcase_06 AC 121 ms
53,984 KB
testcase_07 AC 128 ms
53,836 KB
testcase_08 AC 129 ms
53,936 KB
testcase_09 AC 127 ms
53,988 KB
testcase_10 AC 121 ms
53,948 KB
testcase_11 AC 121 ms
54,008 KB
testcase_12 AC 110 ms
52,840 KB
testcase_13 AC 125 ms
53,956 KB
testcase_14 AC 585 ms
60,080 KB
testcase_15 AC 651 ms
68,736 KB
testcase_16 AC 523 ms
48,636 KB
testcase_17 AC 157 ms
41,536 KB
testcase_18 AC 536 ms
48,976 KB
testcase_19 AC 602 ms
51,144 KB
testcase_20 AC 710 ms
57,388 KB
testcase_21 AC 609 ms
50,864 KB
testcase_22 AC 388 ms
48,508 KB
testcase_23 AC 683 ms
53,412 KB
testcase_24 AC 371 ms
46,592 KB
testcase_25 AC 582 ms
49,644 KB
testcase_26 AC 740 ms
55,104 KB
testcase_27 AC 603 ms
52,964 KB
testcase_28 AC 655 ms
52,092 KB
testcase_29 AC 660 ms
58,376 KB
testcase_30 AC 195 ms
45,316 KB
testcase_31 AC 171 ms
42,592 KB
testcase_32 AC 485 ms
48,184 KB
testcase_33 AC 539 ms
48,616 KB
testcase_34 AC 493 ms
48,376 KB
testcase_35 AC 670 ms
52,708 KB
testcase_36 AC 217 ms
45,568 KB
testcase_37 AC 612 ms
50,404 KB
testcase_38 AC 555 ms
48,760 KB
testcase_39 AC 372 ms
47,864 KB
testcase_40 AC 750 ms
54,008 KB
testcase_41 AC 436 ms
48,240 KB
testcase_42 AC 657 ms
53,132 KB
testcase_43 AC 541 ms
48,412 KB
testcase_44 AC 717 ms
52,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int p=sc.nextInt();
		int q=sc.nextInt();
		int n=sc.nextInt();
		long[] x=new long[n];
		long[] y=new long[n];
		if(p==0){
			int ret=0;
			for(int i=0;i<n;i++){
				x[i]=sc.nextInt();
				y[i]=sc.nextInt();
				if(x[i]%q==0&&y[i]%q==0)ret++;
			}
			System.out.println(ret);
			return;
		}else if(q==0){
			int ret=0;
			for(int i=0;i<n;i++){
				x[i]=sc.nextInt();
				y[i]=sc.nextInt();
				if(x[i]%p==0&&y[i]%p==0)ret++;
			}
			System.out.println(ret);
			return;
		}
		long gcd=gcd(Math.abs(p),Math.abs(q));
		for(int i=0;i<n;i++){
			x[i]=sc.nextInt();
			y[i]=sc.nextInt();
		}
		p/=gcd;q/=gcd;
		if(p%2==0||q%2==0){
			int ret=0;
			for(int i=0;i<n;i++){
				if(x[i]%gcd==0&&y[i]%gcd==0)ret++;
			}
			System.out.println(ret);
		}
		else{
			int ret=0;
			for(int i=0;i<n;i++){
				if(x[i]%gcd==0&&y[i]%gcd==0){
					x[i]/=gcd;
					y[i]/=gcd;
					if((x[i]+y[i])%2==0)ret++;
				}
			}
			System.out.println(ret);
		}

		/*
		 * 座標x,yがそれぞれ
		 * x=P(n+l)+Q(m+k)
		 * y=Q(n-l)+P(m-k)
		 * (n,mは任意の整数)の形で表すことができるなら、プレゼントが配られる。
		 * ここで、Pn+Qmはgcd(P,Q)*整数という形ですべて尽くされ、両者の表す整数の集合は一致する。
		 * よって、問題は、座標x,yが両方gcd(P,Q)で割り切れるものについてのみ考えればよい。
		 * P,Qをそれぞれgcd(P,Q)で割ったものをp,qと置く。x,yもgcdで割ってあるとする。
		 * ここで、(2P,0),(2Q,0)には必ずたどり着けることに注意する。すると、訪れることが可能な点から、
		 * x,yにそれぞれ任意の偶数を加えた点にも移動できることが分かる。
		 * よって(1,1),(1,0)に到達できるかのみ調べればよい。
		 * ①x=1=pn+qm
		 * ②1or0=qn+pm+(任意の偶数)
		 * これを満たすある整数k,l,m,nが存在すればよい。
		 * ①は必ず存在する。
		 * pが奇数,qが偶数のとき、mが偶数で、nは偶奇どちらの形にすることもできる。このとき②は1,0どちらも取れる。
		 * p,qが両方奇数の時、m,nの一方は奇数でもう一方は偶数。このとき、②は1しか取れない。
		 * よって(p+q)mod 2=0のとき、カラマツ模様に移動でき、
		 * p+q mod 2=1 のとき、すべての点に移動できる。
		 *
		 */

	}
	long lcm(long t1,long t2){
		long a=gcd(t1,t2);
		long tt1=t1/a;
		long tt2=t2/a;
		return tt1*tt2*a;
	}
	long gcd(long t1,long t2){
		if(t1<t2){
			long d=t2;
			t2=t1;
			t1=d;
		}
		if(t2==0)return t1;
		return gcd(t2,t1%t2);
	}
}
0