結果

問題 No.51 やる気の問題
ユーザー dazydazy
提出日時 2016-09-08 23:07:58
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 653 bytes
コンパイル時間 3,358 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-11-15 22:26:15
合計ジャッジ時間 7,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,908 KB
testcase_01 AC 121 ms
53,844 KB
testcase_02 AC 124 ms
54,132 KB
testcase_03 AC 123 ms
54,112 KB
testcase_04 AC 125 ms
54,044 KB
testcase_05 RE -
testcase_06 AC 129 ms
54,008 KB
testcase_07 AC 128 ms
54,080 KB
testcase_08 AC 116 ms
53,224 KB
testcase_09 RE -
testcase_10 AC 126 ms
53,632 KB
testcase_11 AC 127 ms
54,176 KB
testcase_12 AC 127 ms
54,024 KB
testcase_13 AC 111 ms
52,980 KB
testcase_14 AC 125 ms
53,864 KB
testcase_15 RE -
testcase_16 AC 125 ms
53,892 KB
testcase_17 AC 122 ms
53,884 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 124 ms
53,772 KB
testcase_21 AC 127 ms
54,084 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int W = scan.nextInt();
        int D = scan.nextInt();
        if (!match(W, D)) System.exit(1);

        int yaruki;
        while (D > 1) {
            W -= W/(D * D);
            if (W <= 0) {
                System.out.println("0");
                System.exit(0);
            }
            D--;
        }
        System.out.println(W);
    }

    public static boolean match (int... args) {
        for (int i : args) {
            if (i < 1||i > 100000) return false;
        }
        return true;
    }
}
0