結果

問題 No.51 やる気の問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 05:14:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-05-04 01:56:16
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,996 KB
testcase_01 AC 108 ms
54,096 KB
testcase_02 AC 106 ms
54,056 KB
testcase_03 AC 102 ms
52,720 KB
testcase_04 AC 97 ms
52,628 KB
testcase_05 AC 106 ms
53,948 KB
testcase_06 AC 116 ms
54,036 KB
testcase_07 AC 107 ms
52,712 KB
testcase_08 AC 100 ms
52,832 KB
testcase_09 AC 99 ms
52,728 KB
testcase_10 AC 95 ms
52,288 KB
testcase_11 AC 109 ms
54,148 KB
testcase_12 AC 97 ms
52,792 KB
testcase_13 AC 99 ms
52,984 KB
testcase_14 AC 111 ms
54,100 KB
testcase_15 AC 115 ms
54,268 KB
testcase_16 AC 105 ms
52,984 KB
testcase_17 AC 108 ms
53,712 KB
testcase_18 AC 108 ms
53,240 KB
testcase_19 AC 116 ms
54,112 KB
testcase_20 AC 104 ms
52,860 KB
testcase_21 AC 124 ms
53,780 KB
testcase_22 AC 122 ms
53,880 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