結果

問題 No.816 Beautiful tuples
ユーザー tentententen
提出日時 2020-11-18 13:54:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-23 09:01:21
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
53,984 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
54,088 KB
testcase_08 AC 132 ms
54,196 KB
testcase_09 AC 131 ms
54,076 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 135 ms
54,188 KB
testcase_13 AC 121 ms
52,996 KB
testcase_14 AC 132 ms
54,340 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;
        long ans = -1;
        for (long i = 1; i <= Math.sqrt(sum); i++) {
            if (sum % i == 0) {
                if ((a + i) % b == 0 && (b + i) % a == 0) {
                    ans = i;
                    break;
                }
            } else {
                if ((a + sum / i) % b == 0 && (b + sum / i) % a == 0) {
                    ans = sum / i;
                    break;
                }
            }
        }
        System.out.println(ans);
    }
}
0