結果

問題 No.816 Beautiful tuples
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-19 23:10:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,500 ms
コード長 690 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-10-05 09:15:29
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,912 KB
testcase_01 AC 112 ms
53,968 KB
testcase_02 AC 110 ms
53,636 KB
testcase_03 AC 100 ms
52,916 KB
testcase_04 AC 102 ms
52,688 KB
testcase_05 AC 105 ms
52,776 KB
testcase_06 AC 110 ms
53,856 KB
testcase_07 AC 109 ms
53,576 KB
testcase_08 AC 111 ms
53,720 KB
testcase_09 AC 110 ms
53,788 KB
testcase_10 AC 101 ms
52,908 KB
testcase_11 AC 110 ms
53,828 KB
testcase_12 AC 115 ms
54,132 KB
testcase_13 AC 113 ms
53,752 KB
testcase_14 AC 103 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long ans = (long)Math.pow(10, 18) + 1;
    for(long i = 1; (i * i) <= (a + b); i++) {
      if(((a + b) % i) == 0) {
        long t = (a + b) / i;
        if((((b + i) % a) == 0) && (((a + i) % b) == 0)) {
          if((i != a) && (i != b)) ans = Math.min(ans, i);
        }
        if((((b + t) % a) == 0) && (((a + t) % b) == 0)) {
          if((t != a) && (t != b)) ans = Math.min(ans, t);
        }
      }
    }
    if(ans == ((long)Math.pow(10, 18) + 1)) ans = -1;
    System.out.println(ans);
  }
}
0