結果

問題 No.1200 お菓子配り-3
ユーザー 37zigen37zigen
提出日時 2020-08-29 11:05:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 896 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 126,628 KB
最終ジャッジ日時 2024-11-14 17:25:28
合計ジャッジ時間 76,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
60,944 KB
testcase_01 AC 131 ms
123,336 KB
testcase_02 AC 154 ms
63,800 KB
testcase_03 AC 160 ms
126,524 KB
testcase_04 AC 165 ms
64,080 KB
testcase_05 AC 161 ms
126,320 KB
testcase_06 AC 162 ms
63,616 KB
testcase_07 AC 297 ms
126,628 KB
testcase_08 AC 302 ms
64,020 KB
testcase_09 AC 295 ms
126,260 KB
testcase_10 AC 300 ms
63,928 KB
testcase_11 AC 314 ms
64,076 KB
testcase_12 AC 1,499 ms
65,908 KB
testcase_13 AC 1,410 ms
68,336 KB
testcase_14 AC 1,560 ms
65,972 KB
testcase_15 AC 1,636 ms
66,304 KB
testcase_16 AC 1,583 ms
66,340 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,892 ms
66,668 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 134 ms
53,996 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayDeque;
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);
		int S=sc.nextInt();
		while (S-->0) {
			long ans=0;
			long x=sc.nextLong();
			long y=sc.nextLong();
			if (x==y) ans=x-1;
			boolean flag=false;
			for (long div=3;div*div<=x+y;++div) {
				for (long d:new long[] {div,(x+y)/div}) {
					if (d*d==x+y) {
						if (flag) continue;
						else flag=true;
					}
					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;
				}
			}
			System.out.println(ans);
		}
		
	}
	
	void tr(Object...o) {System.out.println(Arrays.deepToString(o));}
}

0