結果

問題 No.442 和と積
ユーザー tentententen
提出日時 2023-02-15 12:55:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,776 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 86,152 KB
実行使用メモリ 50,036 KB
最終ジャッジ日時 2023-09-24 22:23:27
合計ジャッジ時間 4,729 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
49,380 KB
testcase_02 AC 44 ms
49,460 KB
testcase_03 AC 43 ms
49,380 KB
testcase_04 WA -
testcase_05 AC 45 ms
49,964 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
49,428 KB
testcase_10 WA -
testcase_11 AC 43 ms
49,560 KB
testcase_12 AC 44 ms
49,444 KB
testcase_13 AC 45 ms
49,648 KB
testcase_14 AC 45 ms
49,484 KB
testcase_15 AC 44 ms
49,640 KB
testcase_16 AC 44 ms
49,600 KB
testcase_17 AC 44 ms
49,780 KB
testcase_18 WA -
testcase_19 AC 44 ms
49,332 KB
testcase_20 AC 44 ms
49,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextLong();
        long b = sc.nextLong();
        long gcdA = getGCD(a + b, a);
        long gcdB = getGCD(a + b, b);
        System.out.println(gcdA / getGCD(gcdA, gcdB) * gcdB);
    }
    
    static long getGCD(long x, long y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0