結果

問題 No.816 Beautiful tuples
ユーザー htensaihtensai
提出日時 2019-12-30 10:36:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,500 ms
コード長 1,011 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-11-07 21:08:50
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,152 KB
testcase_01 AC 129 ms
41,264 KB
testcase_02 AC 129 ms
41,252 KB
testcase_03 AC 129 ms
41,136 KB
testcase_04 AC 137 ms
41,340 KB
testcase_05 AC 139 ms
41,284 KB
testcase_06 AC 125 ms
41,304 KB
testcase_07 AC 113 ms
40,056 KB
testcase_08 AC 126 ms
41,288 KB
testcase_09 AC 129 ms
41,176 KB
testcase_10 AC 128 ms
41,240 KB
testcase_11 AC 128 ms
41,292 KB
testcase_12 AC 125 ms
41,100 KB
testcase_13 AC 125 ms
40,152 KB
testcase_14 AC 127 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int sum = a + b;
        int min = Integer.MAX_VALUE;
        for (int i = 1; i <= Math.sqrt(sum); i++) {
            if (sum % i != 0) {
                continue;
            }
            if (i == a || i == b) {
                continue;
            }
            if (canSet(a, b, i)) {
                min = i;
                break;
            }
            if (sum / i == a || sum / i == b) {
                continue;
            }
            if (canSet(a, b, sum / i)) {
                min = Math.min(min, sum / i);
            }
        }
        if (min == Integer.MAX_VALUE) {
            System.out.println(-1); 
        } else {
            System.out.println(min);
        }
    }
    
    static boolean canSet(int a, int b, int c) {
        return (a + c) % b == 0 && (b + c) % a == 0;
    }
}
0