結果

問題 No.442 和と積
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 23:42:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 852 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-07-04 22:35:00
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,352 KB
testcase_01 AC 130 ms
41,404 KB
testcase_02 AC 132 ms
41,288 KB
testcase_03 AC 136 ms
41,368 KB
testcase_04 AC 134 ms
41,408 KB
testcase_05 AC 133 ms
41,412 KB
testcase_06 AC 134 ms
41,240 KB
testcase_07 AC 134 ms
41,284 KB
testcase_08 AC 120 ms
40,132 KB
testcase_09 AC 133 ms
41,364 KB
testcase_10 AC 135 ms
41,276 KB
testcase_11 AC 120 ms
40,228 KB
testcase_12 AC 133 ms
41,360 KB
testcase_13 AC 133 ms
41,248 KB
testcase_14 AC 133 ms
41,344 KB
testcase_15 AC 119 ms
41,220 KB
testcase_16 AC 131 ms
41,292 KB
testcase_17 AC 133 ms
41,024 KB
testcase_18 AC 133 ms
41,240 KB
testcase_19 AC 135 ms
41,396 KB
testcase_20 AC 137 ms
41,264 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 y = 0;
        long m = A;
        long n = B;
        while(true){
            y = m%n;
            if(y==0){
                break;
            }
            m=n;
            n=y;
        }

        long S = (A+B)/n;
        long a = A/n;
        long x = 0;
        while(true){
            x = S%a;
            if(x==0){
                break;
            }
            S=a;
            a=x;
        }

        S = (A+B)/n;
        long b = B;
        while(true){
            x = S%b;
            if(x==0){
                break;
            }
            S=b;
            b=x;
        }
        System.out.println(n*a*b);
    }
}
0