結果

問題 No.415 ぴょん
ユーザー 41Toame41Toame
提出日時 2018-04-25 15:25:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 3,457 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-27 21:03:06
合計ジャッジ時間 8,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,400 KB
testcase_01 AC 129 ms
41,000 KB
testcase_02 AC 127 ms
41,020 KB
testcase_03 AC 134 ms
41,384 KB
testcase_04 AC 130 ms
41,284 KB
testcase_05 AC 133 ms
40,904 KB
testcase_06 WA -
testcase_07 AC 129 ms
41,128 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 129 ms
41,000 KB
testcase_11 WA -
testcase_12 AC 123 ms
41,196 KB
testcase_13 AC 124 ms
41,144 KB
testcase_14 AC 126 ms
41,072 KB
testcase_15 AC 123 ms
41,016 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 125 ms
41,368 KB
testcase_21 AC 125 ms
40,932 KB
testcase_22 AC 113 ms
39,952 KB
testcase_23 WA -
testcase_24 AC 128 ms
41,152 KB
testcase_25 AC 120 ms
39,956 KB
testcase_26 AC 127 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class T02 {
    /*
    int gcd(int a, int b) {
        if ( b > a) return gcd(b, a);
        else if (b == 0) return a;
        eklse
        */
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int D = sc.nextInt();
        if ( N / 2 < D) {
            D = N - D;
        }
        if (D == 0) {
            System.out.println(0);
        }
        else if (N % D == 0) {
            System.out.println(N / D - 1);
        } else {
            System.out.println(N - 1);
        }

    }

}
0