結果

問題 No.51 やる気の問題
ユーザー l1267976l1267976
提出日時 2017-03-10 19:12:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 4,220 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-24 07:54:15
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,876 KB
testcase_01 AC 129 ms
53,992 KB
testcase_02 AC 133 ms
54,188 KB
testcase_03 AC 132 ms
54,128 KB
testcase_04 AC 130 ms
53,776 KB
testcase_05 AC 139 ms
54,084 KB
testcase_06 AC 140 ms
53,908 KB
testcase_07 AC 139 ms
54,136 KB
testcase_08 AC 138 ms
53,600 KB
testcase_09 AC 142 ms
54,052 KB
testcase_10 AC 137 ms
53,896 KB
testcase_11 AC 135 ms
54,484 KB
testcase_12 AC 141 ms
53,688 KB
testcase_13 AC 143 ms
53,764 KB
testcase_14 AC 139 ms
53,656 KB
testcase_15 AC 140 ms
53,876 KB
testcase_16 AC 135 ms
54,224 KB
testcase_17 AC 134 ms
53,896 KB
testcase_18 AC 138 ms
53,900 KB
testcase_19 AC 139 ms
53,824 KB
testcase_20 AC 144 ms
54,068 KB
testcase_21 AC 138 ms
54,312 KB
testcase_22 AC 138 ms
53,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No51 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int w = sc.nextInt();
        int d = sc.nextInt();

        for (int i = d; i > 0; i--) {
            double yaruki = w / Math.pow(i, 2);
            int iYaruki = (int) Math.floor(yaruki);
            w -= iYaruki;

            if (i == 1) {
                System.out.println(iYaruki);
            }
        }

        sc.close();
    }

}
0