結果

問題 No.816 Beautiful tuples
ユーザー tentententen
提出日時 2020-09-01 07:16:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 75,460 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-11-17 14:58:25
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
40,904 KB
testcase_02 AC 123 ms
41,280 KB
testcase_03 WA -
testcase_04 AC 114 ms
40,520 KB
testcase_05 AC 109 ms
40,144 KB
testcase_06 AC 121 ms
41,324 KB
testcase_07 AC 121 ms
41,636 KB
testcase_08 AC 119 ms
40,996 KB
testcase_09 AC 117 ms
41,408 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 124 ms
41,008 KB
testcase_13 AC 122 ms
41,036 KB
testcase_14 AC 108 ms
39,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long a = sc.nextInt();
    	long b = sc.nextInt();
    	long sum = a + b;
    	if ((a + 1) % b == 0 && (b + 1) % a == 0) {
    	    System.out.println(1);
    	    return;
    	}
    	TreeSet<Long> remain = new TreeSet<>();
    	remain.add(sum);
    	for (long i = 2; i <= Math.sqrt(sum); i++) {
    	    if (sum % i == 0) {
    	        if ((a + i) % b == 0 && (b + i) % a == 0) {
    	            System.out.println(i);
    	            return;
    	        }
    	        remain.add(sum / i);
    	    }
    	}
    	for (long x : remain) {
    	    if ((a + x) % b == 0 && (b + x) % a == 0) {
    	        System.out.println(x);
    	        return;
    	    }
    	}
    	System.out.println("-1");
	}
}
0