結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-30 05:49:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 80,220 KB
実行使用メモリ 67,124 KB
最終ジャッジ日時 2024-11-14 17:53:29
合計ジャッジ時間 35,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,084 KB
testcase_01 AC 141 ms
54,072 KB
testcase_02 AC 169 ms
55,224 KB
testcase_03 AC 168 ms
55,052 KB
testcase_04 AC 176 ms
55,180 KB
testcase_05 AC 171 ms
55,320 KB
testcase_06 AC 172 ms
55,128 KB
testcase_07 AC 204 ms
55,916 KB
testcase_08 AC 202 ms
55,356 KB
testcase_09 AC 227 ms
55,720 KB
testcase_10 AC 221 ms
55,976 KB
testcase_11 AC 196 ms
55,164 KB
testcase_12 AC 483 ms
60,644 KB
testcase_13 AC 522 ms
58,816 KB
testcase_14 AC 490 ms
58,732 KB
testcase_15 AC 523 ms
58,976 KB
testcase_16 AC 521 ms
56,620 KB
testcase_17 AC 1,168 ms
66,436 KB
testcase_18 AC 1,487 ms
66,460 KB
testcase_19 AC 543 ms
58,600 KB
testcase_20 AC 2,322 ms
66,504 KB
testcase_21 AC 2,395 ms
66,344 KB
testcase_22 AC 2,695 ms
66,464 KB
testcase_23 AC 2,337 ms
66,516 KB
testcase_24 AC 2,323 ms
66,428 KB
testcase_25 AC 2,328 ms
66,364 KB
testcase_26 AC 2,332 ms
66,492 KB
testcase_27 AC 137 ms
54,300 KB
testcase_28 AC 2,515 ms
66,468 KB
testcase_29 AC 2,031 ms
67,080 KB
testcase_30 AC 2,027 ms
67,124 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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) ans=x-1;
			ArrayList<Long> divs=new ArrayList<>();
			int add=(x+y)%2==0?1:2;
			for (long div=3;div*div<=x+y;div+=add) {
				if ((x+y)%div!=0) continue;
				divs.add(div);
				if (div*div!=x+y) {
					divs.add((x+y)/div);
				}
			}
			for (long d:divs) {
				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