結果

問題 No.442 和と積
ユーザー tentententen
提出日時 2020-09-10 19:55:57
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 715 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 47,216 KB
最終ジャッジ日時 2024-06-06 07:44:02
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,668 KB
testcase_01 AC 119 ms
41,056 KB
testcase_02 AC 121 ms
41,192 KB
testcase_03 AC 121 ms
41,324 KB
testcase_04 AC 121 ms
41,372 KB
testcase_05 AC 116 ms
41,228 KB
testcase_06 AC 104 ms
39,916 KB
testcase_07 AC 121 ms
41,156 KB
testcase_08 AC 112 ms
41,064 KB
testcase_09 AC 137 ms
41,276 KB
testcase_10 AC 118 ms
41,080 KB
testcase_11 AC 134 ms
41,212 KB
testcase_12 AC 137 ms
41,124 KB
testcase_13 AC 100 ms
39,500 KB
testcase_14 AC 117 ms
40,856 KB
testcase_15 AC 116 ms
41,052 KB
testcase_16 AC 103 ms
39,748 KB
testcase_17 AC 125 ms
40,904 KB
testcase_18 AC 123 ms
41,204 KB
testcase_19 AC 115 ms
40,424 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;
    	HashMap<Long, Integer> map = new HashMap<>();
    	long ans = 1;
    	for (long i = 2; i <= Math.sqrt(c); i++) {
    	    while (c % i == 0) {
    	        if (a % i == 0) {
    	            ans *= i;
    	            a /= i;
    	        } else if (b % i == 0) {
    	            ans *= i;
    	            b /= i;
    	        }
    	        c /= i;
    	    }
    	}
    	if (a % c == 0) {
    	    ans *= c;
    	} else if (b % c == 0) {
    	    ans += c;
    	}
    	System.out.println(ans);
    }
}
0