結果

問題 No.51 やる気の問題
ユーザー dazydazy
提出日時 2016-09-08 23:29:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-11-15 22:26:32
合計ジャッジ時間 7,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,492 KB
testcase_01 AC 120 ms
39,844 KB
testcase_02 AC 122 ms
41,112 KB
testcase_03 AC 128 ms
41,372 KB
testcase_04 AC 128 ms
41,224 KB
testcase_05 AC 132 ms
41,444 KB
testcase_06 AC 130 ms
41,296 KB
testcase_07 AC 135 ms
41,476 KB
testcase_08 AC 134 ms
41,128 KB
testcase_09 AC 133 ms
41,468 KB
testcase_10 AC 133 ms
41,268 KB
testcase_11 AC 132 ms
41,260 KB
testcase_12 AC 133 ms
41,124 KB
testcase_13 AC 117 ms
41,324 KB
testcase_14 AC 131 ms
41,332 KB
testcase_15 AC 133 ms
41,364 KB
testcase_16 AC 133 ms
41,020 KB
testcase_17 AC 133 ms
41,128 KB
testcase_18 AC 133 ms
40,204 KB
testcase_19 AC 135 ms
41,268 KB
testcase_20 AC 131 ms
41,248 KB
testcase_21 AC 129 ms
41,128 KB
testcase_22 AC 134 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

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

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