結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 116 ms
54,080 KB
testcase_02 AC 115 ms
53,984 KB
testcase_03 AC 117 ms
53,892 KB
testcase_04 AC 119 ms
53,864 KB
testcase_05 RE -
testcase_06 AC 122 ms
54,000 KB
testcase_07 AC 123 ms
54,012 KB
testcase_08 AC 125 ms
54,164 KB
testcase_09 AC 110 ms
52,944 KB
testcase_10 AC 123 ms
53,972 KB
testcase_11 AC 120 ms
53,812 KB
testcase_12 AC 121 ms
53,784 KB
testcase_13 AC 110 ms
52,772 KB
testcase_14 AC 607 ms
59,484 KB
testcase_15 AC 648 ms
58,528 KB
testcase_16 AC 509 ms
48,512 KB
testcase_17 AC 150 ms
42,012 KB
testcase_18 AC 494 ms
48,660 KB
testcase_19 AC 634 ms
50,556 KB
testcase_20 AC 765 ms
55,456 KB
testcase_21 AC 631 ms
49,964 KB
testcase_22 AC 344 ms
47,008 KB
testcase_23 AC 668 ms
53,356 KB
testcase_24 AC 368 ms
46,772 KB
testcase_25 AC 619 ms
48,764 KB
testcase_26 AC 688 ms
55,528 KB
testcase_27 AC 633 ms
52,772 KB
testcase_28 AC 676 ms
52,200 KB
testcase_29 AC 753 ms
68,864 KB
testcase_30 AC 206 ms
57,268 KB
testcase_31 AC 178 ms
56,404 KB
testcase_32 AC 583 ms
59,456 KB
testcase_33 AC 579 ms
59,184 KB
testcase_34 AC 536 ms
59,260 KB
testcase_35 AC 664 ms
63,272 KB
testcase_36 AC 207 ms
57,140 KB
testcase_37 AC 589 ms
60,960 KB
testcase_38 AC 556 ms
59,216 KB
testcase_39 AC 363 ms
59,076 KB
testcase_40 AC 748 ms
65,620 KB
testcase_41 AC 451 ms
59,324 KB
testcase_42 AC 652 ms
63,352 KB
testcase_43 AC 545 ms
59,300 KB
testcase_44 AC 652 ms
62,000 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