結果

問題 No.2767 Add to Divide
ユーザー ks2mks2m
提出日時 2024-05-31 22:13:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 2,974 ms
コンパイル使用メモリ 79,508 KB
実行使用メモリ 42,264 KB
最終ジャッジ日時 2024-05-31 22:14:02
合計ジャッジ時間 7,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,428 KB
testcase_01 AC 167 ms
41,488 KB
testcase_02 AC 153 ms
41,824 KB
testcase_03 AC 209 ms
42,264 KB
testcase_04 AC 159 ms
41,672 KB
testcase_05 AC 187 ms
41,600 KB
testcase_06 AC 197 ms
41,828 KB
testcase_07 AC 198 ms
41,812 KB
testcase_08 AC 253 ms
42,096 KB
testcase_09 AC 214 ms
41,704 KB
testcase_10 AC 224 ms
42,140 KB
testcase_11 AC 209 ms
41,884 KB
testcase_12 AC 225 ms
41,952 KB
testcase_13 AC 225 ms
41,460 KB
testcase_14 AC 210 ms
41,912 KB
testcase_15 AC 196 ms
41,848 KB
testcase_16 AC 196 ms
41,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		for (int z = 0; z < t; z++) {
			int a = sc.nextInt();
			int b = sc.nextInt();

			int d = b - a;
			int ans = Integer.MAX_VALUE;
			if (d % a == 0) {
				ans = 0;
			} else if (d < a) {
				ans = -1;
			} else {
				int a2 = a % d;
				List<Integer> list = divList(d);
				for (int e : list) {
					if (a2 <= e) {
						ans = Math.min(ans, e - a2);
					}
				}
			}
			System.out.println(ans);
		}
		sc.close();
	}

	static List<Integer> divList(int n) {
		List<Integer> list = new ArrayList<>();
		int end = (int) Math.sqrt(n);
		for (int i = 1; i <= end; i++) {
			if (n % i == 0) {
				list.add(i);
			}
		}
		int i = end * end == n ? list.size() - 2 : list.size() - 1;
		for ( ; i >= 0; i--) {
			list.add(n / list.get(i));
		}
		return list;
	}
}
0