結果

問題 No.442 和と積
ユーザー tentententen
提出日時 2020-09-12 23:07:33
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 678 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 61,364 KB
最終ジャッジ日時 2024-06-10 19:07:24
合計ジャッジ時間 7,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
61,316 KB
testcase_01 AC 107 ms
53,380 KB
testcase_02 AC 109 ms
54,064 KB
testcase_03 AC 121 ms
54,492 KB
testcase_04 AC 117 ms
54,128 KB
testcase_05 AC 119 ms
54,076 KB
testcase_06 AC 100 ms
52,724 KB
testcase_07 AC 102 ms
53,064 KB
testcase_08 AC 108 ms
53,768 KB
testcase_09 AC 120 ms
54,104 KB
testcase_10 AC 99 ms
52,996 KB
testcase_11 AC 111 ms
53,784 KB
testcase_12 AC 110 ms
53,948 KB
testcase_13 AC 98 ms
52,952 KB
testcase_14 AC 111 ms
54,160 KB
testcase_15 AC 98 ms
52,992 KB
testcase_16 AC 102 ms
52,772 KB
testcase_17 AC 111 ms
53,016 KB
testcase_18 AC 113 ms
53,868 KB
testcase_19 AC 123 ms
54,208 KB
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 c = a + b;
    	long ans = 1;
    	for (long i = 2; i <= Math.sqrt(c); i++) {
    	    while (c % i == 0) {
    	        if (a % i == 0) {
    	           a /= i;
    	           ans *= i;
    	        } else if (b % i == 0) {
    	            b /= i;
    	            ans *= i;
    	        }
    	        c /= i;
    	    }
    	}
    	if  (c > 1 && a % c == 0) {
    	    ans *= c;
    	} else if (c > 1 && b % c == 0) {
    	    ans *= c;
    	}
    	System.out.println(ans);
	}
}
0