結果

問題 No.415 ぴょん
ユーザー atkrymatkrym
提出日時 2016-10-31 21:33:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 2,590 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-25 00:14:35
合計ジャッジ時間 6,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,652 KB
testcase_01 AC 105 ms
52,800 KB
testcase_02 AC 111 ms
52,868 KB
testcase_03 AC 117 ms
53,812 KB
testcase_04 AC 116 ms
53,540 KB
testcase_05 AC 107 ms
52,932 KB
testcase_06 WA -
testcase_07 AC 117 ms
54,200 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 121 ms
53,612 KB
testcase_11 WA -
testcase_12 AC 120 ms
53,708 KB
testcase_13 AC 120 ms
53,944 KB
testcase_14 AC 117 ms
54,180 KB
testcase_15 AC 110 ms
53,320 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 117 ms
53,940 KB
testcase_21 AC 121 ms
53,944 KB
testcase_22 AC 106 ms
52,628 KB
testcase_23 WA -
testcase_24 AC 110 ms
53,616 KB
testcase_25 AC 108 ms
52,644 KB
testcase_26 AC 115 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        long n = sc.nextLong();
        long d = sc.nextLong();
        
        long ret;
        
        if (n==d) {
            ret = 0;
        } else {
            if (d>n/2) d = n-d;
            long m = n%d;
            if (m==0) {
                ret = n/d-1;
            } else {
                ret = n-1;
            }
        }
        
        System.out.println(ret);
    }
}
0