結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-30 06:25:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,604 ms / 4,000 ms
コード長 1,347 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 79,880 KB
実行使用メモリ 55,932 KB
最終ジャッジ日時 2024-11-20 23:09:28
合計ジャッジ時間 33,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,148 KB
testcase_01 AC 123 ms
40,112 KB
testcase_02 AC 164 ms
41,244 KB
testcase_03 AC 146 ms
40,928 KB
testcase_04 AC 165 ms
41,692 KB
testcase_05 AC 169 ms
41,696 KB
testcase_06 AC 168 ms
41,392 KB
testcase_07 AC 193 ms
41,908 KB
testcase_08 AC 187 ms
41,632 KB
testcase_09 AC 183 ms
41,436 KB
testcase_10 AC 195 ms
41,848 KB
testcase_11 AC 183 ms
41,540 KB
testcase_12 AC 473 ms
45,176 KB
testcase_13 AC 513 ms
45,124 KB
testcase_14 AC 468 ms
45,016 KB
testcase_15 AC 504 ms
45,172 KB
testcase_16 AC 506 ms
45,084 KB
testcase_17 AC 1,107 ms
54,432 KB
testcase_18 AC 1,355 ms
54,476 KB
testcase_19 AC 454 ms
43,956 KB
testcase_20 AC 2,271 ms
55,648 KB
testcase_21 AC 2,237 ms
55,164 KB
testcase_22 AC 2,604 ms
55,436 KB
testcase_23 AC 2,283 ms
55,224 KB
testcase_24 AC 2,228 ms
54,868 KB
testcase_25 AC 2,232 ms
55,416 KB
testcase_26 AC 2,262 ms
55,472 KB
testcase_27 AC 134 ms
41,388 KB
testcase_28 AC 2,309 ms
55,120 KB
testcase_29 AC 1,940 ms
55,024 KB
testcase_30 AC 1,963 ms
55,932 KB
testcase_31 AC 138 ms
41,088 KB
testcase_32 AC 135 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	final long MOD=(long)1e9+7;
	
	
	ArrayList<Long> gen_divs(long n) {
		ArrayList<Long> divs=new ArrayList<>();
		if (n%2==0) {
			for (long div=2;div*div<=n;++div) {
				if (n%div!=0) continue;
				divs.add(div);
				divs.add(n/div);
			}
		} else {
			for (long div=3;div*div<=n;div+=2) {
				if (n%div!=0) continue;
				divs.add(div);
				divs.add(n/div);
			}
		}
		if (divs.size()>2 && divs.get(divs.size()-1)==divs.get(divs.size()-2)) {
			divs.remove(divs.size()-1);
		}
		return divs;
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		int S=sc.nextInt();
		while (S-->0) {
			long ans=0;
			long x=Long.parseLong(sc.next());
			long y=Long.parseLong(sc.next());
			if (x<y) {
				x^=y;y^=x;x^=y;
			}
			if (x==y) ans=x-1;//a=1の場合
			ArrayList<Long> divs=gen_divs(x+y);
			for (long d:divs) {
				if (d==2) continue;
				long a=d-1;
				long bc=(x+y)/d;
				long b=(x-bc)/(a-1);
				long c=bc-b;
				if (x!=a*b+c || y!=a*c+b || a<=0 || b<=0 || c<=0) continue;
				ans+=1;
			}
			pw.println(ans);
		}
		pw.flush();
	}
	
	void tr(Object...o) {System.out.println(Arrays.deepToString(o));}
}

0