結果

問題 No.415 ぴょん
ユーザー Mcpu3Mcpu3
提出日時 2018-08-28 20:50:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 460 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-07-18 03:45:22
合計ジャッジ時間 5,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,952 KB
testcase_01 AC 109 ms
41,280 KB
testcase_02 AC 116 ms
41,072 KB
testcase_03 AC 114 ms
41,224 KB
testcase_04 AC 120 ms
41,024 KB
testcase_05 AC 113 ms
41,120 KB
testcase_06 AC 116 ms
41,044 KB
testcase_07 AC 118 ms
41,280 KB
testcase_08 AC 112 ms
41,172 KB
testcase_09 AC 106 ms
41,332 KB
testcase_10 AC 118 ms
41,120 KB
testcase_11 AC 100 ms
40,956 KB
testcase_12 AC 94 ms
40,692 KB
testcase_13 AC 106 ms
41,228 KB
testcase_14 AC 105 ms
40,780 KB
testcase_15 AC 101 ms
41,176 KB
testcase_16 AC 115 ms
41,308 KB
testcase_17 AC 107 ms
41,084 KB
testcase_18 AC 128 ms
40,936 KB
testcase_19 AC 114 ms
41,052 KB
testcase_20 AC 112 ms
41,004 KB
testcase_21 AC 115 ms
40,956 KB
testcase_22 AC 113 ms
40,836 KB
testcase_23 AC 109 ms
40,916 KB
testcase_24 AC 130 ms
41,268 KB
testcase_25 AC 116 ms
41,324 KB
testcase_26 AC 119 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static long gcd(long x,long y) {
		long r;
		if(y>x) {
			r=x;
			x=y;
			y=r;
		}
		while(y>0) {
			r=x%y;
			x=y;
			y=r;
		}
		return x;
	}
	
	public static long lcm(long x,long y) {
		return x*y/gcd(x,y);
	}
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong(),d=sc.nextLong();
		sc.close();
		System.out.print(lcm(n,d)/d-1);
	}
}
0