結果

問題 No.51 やる気の問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:14:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-11-25 07:50:56
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,532 KB
testcase_01 AC 130 ms
54,084 KB
testcase_02 AC 124 ms
52,944 KB
testcase_03 AC 129 ms
53,924 KB
testcase_04 AC 129 ms
53,940 KB
testcase_05 AC 131 ms
53,660 KB
testcase_06 AC 123 ms
53,968 KB
testcase_07 AC 126 ms
53,776 KB
testcase_08 AC 131 ms
54,152 KB
testcase_09 AC 131 ms
53,832 KB
testcase_10 AC 129 ms
53,684 KB
testcase_11 AC 129 ms
53,540 KB
testcase_12 AC 125 ms
54,120 KB
testcase_13 AC 111 ms
52,912 KB
testcase_14 AC 125 ms
54,092 KB
testcase_15 AC 132 ms
53,896 KB
testcase_16 AC 128 ms
53,800 KB
testcase_17 AC 122 ms
53,860 KB
testcase_18 AC 131 ms
53,656 KB
testcase_19 AC 137 ms
53,896 KB
testcase_20 AC 132 ms
53,740 KB
testcase_21 AC 131 ms
53,672 KB
testcase_22 AC 140 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int W = sc.nextInt();
        int D = sc.nextInt();
        
        while(D!=1){
            int w1d = W/D/D;
            W = W - w1d;
            D--;
        }
        System.out.println(W);
    }
}
0