結果

問題 No.51 やる気の問題
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 03:39:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 856 bytes
コンパイル時間 3,578 ms
コンパイル使用メモリ 75,544 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-07-04 01:32:54
合計ジャッジ時間 7,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,144 KB
testcase_01 AC 133 ms
54,004 KB
testcase_02 AC 130 ms
53,784 KB
testcase_03 AC 117 ms
54,188 KB
testcase_04 AC 132 ms
54,220 KB
testcase_05 RE -
testcase_06 AC 132 ms
54,080 KB
testcase_07 AC 132 ms
54,228 KB
testcase_08 AC 129 ms
53,916 KB
testcase_09 RE -
testcase_10 AC 131 ms
54,040 KB
testcase_11 AC 131 ms
54,032 KB
testcase_12 AC 121 ms
53,096 KB
testcase_13 AC 137 ms
54,128 KB
testcase_14 AC 132 ms
54,052 KB
testcase_15 RE -
testcase_16 AC 132 ms
54,136 KB
testcase_17 AC 132 ms
54,096 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 132 ms
53,984 KB
testcase_21 AC 131 ms
53,992 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.51 やる気の問題

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No51 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int w = sc.nextInt();
        int d = sc.nextInt();
        int ans = 0;
        for (int i=d; i>0; i--) {
            int t = w/(i*i);
            ans = t;
            w -= t;
        }
        out.println(ans);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0