結果

問題 No.415 ぴょん
ユーザー tentententen
提出日時 2020-10-14 16:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 448 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-07-20 19:10:54
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,748 KB
testcase_01 AC 102 ms
40,188 KB
testcase_02 AC 123 ms
41,100 KB
testcase_03 AC 127 ms
41,180 KB
testcase_04 AC 112 ms
41,292 KB
testcase_05 AC 125 ms
41,060 KB
testcase_06 AC 110 ms
40,440 KB
testcase_07 AC 100 ms
39,488 KB
testcase_08 AC 110 ms
41,108 KB
testcase_09 AC 108 ms
41,108 KB
testcase_10 AC 105 ms
40,192 KB
testcase_11 AC 103 ms
40,268 KB
testcase_12 AC 117 ms
41,036 KB
testcase_13 AC 128 ms
41,384 KB
testcase_14 AC 121 ms
41,300 KB
testcase_15 AC 117 ms
41,236 KB
testcase_16 AC 110 ms
41,228 KB
testcase_17 AC 108 ms
41,176 KB
testcase_18 AC 113 ms
41,096 KB
testcase_19 AC 100 ms
39,956 KB
testcase_20 AC 101 ms
40,120 KB
testcase_21 AC 101 ms
40,040 KB
testcase_22 AC 104 ms
39,912 KB
testcase_23 AC 112 ms
40,960 KB
testcase_24 AC 101 ms
40,156 KB
testcase_25 AC 106 ms
40,056 KB
testcase_26 AC 126 ms
41,296 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();
    	System.out.println(getLCM(n, d) / 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