結果

問題 No.415 ぴょん
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-23 21:55:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,996 KB
最終ジャッジ日時 2024-11-18 14:52:43
合計ジャッジ時間 6,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,020 KB
testcase_01 AC 115 ms
52,752 KB
testcase_02 AC 128 ms
54,248 KB
testcase_03 AC 132 ms
54,296 KB
testcase_04 AC 129 ms
54,228 KB
testcase_05 AC 131 ms
54,096 KB
testcase_06 AC 118 ms
53,100 KB
testcase_07 AC 118 ms
53,924 KB
testcase_08 AC 131 ms
53,960 KB
testcase_09 AC 131 ms
53,696 KB
testcase_10 AC 131 ms
54,032 KB
testcase_11 AC 127 ms
54,048 KB
testcase_12 AC 130 ms
54,252 KB
testcase_13 AC 132 ms
54,492 KB
testcase_14 AC 132 ms
54,184 KB
testcase_15 AC 133 ms
54,176 KB
testcase_16 AC 130 ms
54,312 KB
testcase_17 AC 130 ms
53,968 KB
testcase_18 AC 131 ms
53,952 KB
testcase_19 AC 133 ms
54,128 KB
testcase_20 AC 134 ms
54,252 KB
testcase_21 AC 131 ms
54,004 KB
testcase_22 AC 134 ms
54,080 KB
testcase_23 AC 133 ms
54,332 KB
testcase_24 AC 132 ms
53,852 KB
testcase_25 AC 132 ms
53,792 KB
testcase_26 AC 117 ms
54,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        long N = sc.nextLong(), D = sc.nextLong();
                        System.out.println(N / gcd(N, D) - 1);
                }
        }
        private 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