結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-30 06:10:19
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,038 bytes
コンパイル時間 3,492 ms
コンパイル使用メモリ 79,092 KB
実行使用メモリ 67,232 KB
最終ジャッジ日時 2024-11-14 17:54:32
合計ジャッジ時間 45,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,016 KB
testcase_01 AC 141 ms
54,132 KB
testcase_02 AC 179 ms
55,024 KB
testcase_03 AC 180 ms
55,264 KB
testcase_04 AC 181 ms
54,896 KB
testcase_05 AC 180 ms
55,128 KB
testcase_06 AC 181 ms
55,080 KB
testcase_07 AC 208 ms
55,980 KB
testcase_08 AC 208 ms
55,472 KB
testcase_09 AC 236 ms
56,040 KB
testcase_10 AC 204 ms
55,652 KB
testcase_11 AC 207 ms
55,440 KB
testcase_12 AC 542 ms
58,864 KB
testcase_13 AC 622 ms
58,972 KB
testcase_14 AC 545 ms
58,832 KB
testcase_15 AC 583 ms
58,960 KB
testcase_16 AC 577 ms
58,964 KB
testcase_17 AC 1,353 ms
66,392 KB
testcase_18 AC 1,751 ms
66,468 KB
testcase_19 AC 646 ms
58,796 KB
testcase_20 AC 2,860 ms
66,692 KB
testcase_21 AC 3,000 ms
66,288 KB
testcase_22 AC 3,294 ms
66,328 KB
testcase_23 AC 2,865 ms
66,628 KB
testcase_24 AC 3,002 ms
66,440 KB
testcase_25 AC 3,011 ms
66,476 KB
testcase_26 AC 2,861 ms
66,272 KB
testcase_27 AC 139 ms
53,960 KB
testcase_28 TLE -
testcase_29 AC 3,360 ms
67,232 KB
testcase_30 AC 3,366 ms
67,172 KB
testcase_31 AC 140 ms
53,860 KB
testcase_32 AC 140 ms
54,204 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;
	
	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=new ArrayList<>();
			for (long div=2;div*div<=x+y;++div) {
				if ((x+y)%div!=0) continue;
				divs.add(div);
				if (div*div!=x+y) {
					divs.add((x+y)/div);
				}
			}
			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