結果

問題 No.415 ぴょん
ユーザー htensaihtensai
提出日時 2020-05-07 16:04:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 455 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-07-03 09:26:30
合計ジャッジ時間 6,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,928 KB
testcase_01 AC 132 ms
53,852 KB
testcase_02 AC 134 ms
53,884 KB
testcase_03 AC 135 ms
54,308 KB
testcase_04 AC 136 ms
53,972 KB
testcase_05 AC 135 ms
53,556 KB
testcase_06 AC 134 ms
53,784 KB
testcase_07 AC 135 ms
53,936 KB
testcase_08 AC 137 ms
53,992 KB
testcase_09 AC 131 ms
54,492 KB
testcase_10 AC 133 ms
53,876 KB
testcase_11 AC 136 ms
54,336 KB
testcase_12 AC 135 ms
54,060 KB
testcase_13 AC 131 ms
53,984 KB
testcase_14 AC 133 ms
53,776 KB
testcase_15 AC 130 ms
53,988 KB
testcase_16 AC 132 ms
53,980 KB
testcase_17 AC 136 ms
54,104 KB
testcase_18 AC 136 ms
53,784 KB
testcase_19 AC 137 ms
53,916 KB
testcase_20 AC 139 ms
53,952 KB
testcase_21 AC 130 ms
53,836 KB
testcase_22 AC 134 ms
54,044 KB
testcase_23 AC 133 ms
54,080 KB
testcase_24 AC 140 ms
54,220 KB
testcase_25 AC 132 ms
54,104 KB
testcase_26 AC 134 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		long lcm = getLCM(n, d);
		System.out.println(lcm / d - 1);
	}
	
	static long getLCM(long x, long y) {
	    return x / getGCD(x, y) * y;
	}
	
	static long getGCD(long x, long y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return getGCD(y, x % y);
	    }
	}
}
0