結果

問題 No.415 ぴょん
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 16:20:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-11-18 14:43:52
合計ジャッジ時間 5,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,928 KB
testcase_01 AC 121 ms
54,036 KB
testcase_02 AC 106 ms
53,044 KB
testcase_03 AC 106 ms
52,964 KB
testcase_04 AC 117 ms
53,924 KB
testcase_05 AC 105 ms
52,980 KB
testcase_06 AC 109 ms
53,012 KB
testcase_07 AC 117 ms
53,676 KB
testcase_08 AC 104 ms
53,156 KB
testcase_09 AC 120 ms
54,108 KB
testcase_10 AC 121 ms
54,192 KB
testcase_11 AC 111 ms
53,692 KB
testcase_12 AC 119 ms
54,160 KB
testcase_13 AC 121 ms
54,128 KB
testcase_14 AC 120 ms
54,056 KB
testcase_15 AC 116 ms
53,100 KB
testcase_16 AC 120 ms
54,124 KB
testcase_17 AC 119 ms
53,984 KB
testcase_18 AC 106 ms
52,736 KB
testcase_19 AC 113 ms
54,104 KB
testcase_20 AC 121 ms
54,100 KB
testcase_21 AC 117 ms
53,892 KB
testcase_22 AC 121 ms
53,856 KB
testcase_23 AC 120 ms
53,956 KB
testcase_24 AC 118 ms
54,248 KB
testcase_25 AC 121 ms
53,992 KB
testcase_26 AC 122 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			long N = sc.nextInt();
			long D = sc.nextInt();
			long ans = 0;
			long gcd = gcd(N,D);
			N *= D / gcd;
			
			System.out.println(N / D - 1);
			
		}
		static long gcd(long a, long b) {
			if(a < b) return gcd(b,a);
			if(b == 0) return a;
			return gcd(b, a % b);
		}
}
0