結果

問題 No.415 ぴょん
ユーザー atkrymatkrym
提出日時 2016-10-31 21:33:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-05-03 20:16:03
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,160 KB
testcase_01 AC 118 ms
41,276 KB
testcase_02 AC 120 ms
41,068 KB
testcase_03 AC 112 ms
40,828 KB
testcase_04 AC 118 ms
40,732 KB
testcase_05 AC 112 ms
41,300 KB
testcase_06 WA -
testcase_07 AC 106 ms
39,772 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 119 ms
41,288 KB
testcase_11 WA -
testcase_12 AC 116 ms
41,252 KB
testcase_13 AC 122 ms
41,044 KB
testcase_14 AC 112 ms
40,952 KB
testcase_15 AC 120 ms
41,340 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 117 ms
41,008 KB
testcase_21 AC 118 ms
41,040 KB
testcase_22 AC 115 ms
40,952 KB
testcase_23 WA -
testcase_24 AC 128 ms
41,192 KB
testcase_25 AC 130 ms
41,184 KB
testcase_26 AC 116 ms
40,840 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