結果

問題 No.415 ぴょん
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 17:13:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 294 bytes
コンパイル時間 3,203 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-11-18 14:46:43
合計ジャッジ時間 7,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,108 KB
testcase_01 AC 105 ms
53,080 KB
testcase_02 AC 104 ms
52,712 KB
testcase_03 AC 105 ms
52,776 KB
testcase_04 AC 122 ms
54,132 KB
testcase_05 AC 119 ms
53,924 KB
testcase_06 AC 121 ms
53,940 KB
testcase_07 AC 119 ms
53,872 KB
testcase_08 AC 116 ms
53,848 KB
testcase_09 AC 102 ms
52,812 KB
testcase_10 AC 123 ms
54,148 KB
testcase_11 AC 119 ms
54,048 KB
testcase_12 AC 119 ms
54,008 KB
testcase_13 AC 116 ms
54,176 KB
testcase_14 AC 109 ms
52,844 KB
testcase_15 AC 118 ms
54,052 KB
testcase_16 AC 118 ms
53,904 KB
testcase_17 AC 120 ms
53,812 KB
testcase_18 AC 120 ms
54,008 KB
testcase_19 AC 123 ms
54,188 KB
testcase_20 AC 119 ms
54,016 KB
testcase_21 AC 118 ms
53,960 KB
testcase_22 AC 118 ms
54,192 KB
testcase_23 AC 118 ms
54,224 KB
testcase_24 AC 117 ms
54,024 KB
testcase_25 AC 111 ms
53,008 KB
testcase_26 AC 120 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		long n = sc.nextLong(), m = sc.nextLong(), a = n, b = m, tmp = n%m;
		while(tmp > 0){
			a = b;
			b = tmp;
			tmp = a % b;
		}
		System.out.println((n/b)-1);
	}
}
0