結果

問題 No.51 やる気の問題
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 03:42:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 860 bytes
コンパイル時間 3,673 ms
コンパイル使用メモリ 75,288 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-04 01:33:04
合計ジャッジ時間 6,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,848 KB
testcase_01 AC 127 ms
54,164 KB
testcase_02 AC 125 ms
54,108 KB
testcase_03 AC 106 ms
52,452 KB
testcase_04 AC 118 ms
52,652 KB
testcase_05 AC 129 ms
54,160 KB
testcase_06 AC 127 ms
54,340 KB
testcase_07 AC 125 ms
54,168 KB
testcase_08 AC 116 ms
53,264 KB
testcase_09 AC 129 ms
54,184 KB
testcase_10 AC 129 ms
54,076 KB
testcase_11 AC 123 ms
53,848 KB
testcase_12 AC 124 ms
54,044 KB
testcase_13 AC 126 ms
54,020 KB
testcase_14 AC 125 ms
53,688 KB
testcase_15 AC 128 ms
54,040 KB
testcase_16 AC 125 ms
54,160 KB
testcase_17 AC 128 ms
53,944 KB
testcase_18 AC 130 ms
53,860 KB
testcase_19 AC 127 ms
53,952 KB
testcase_20 AC 129 ms
54,172 KB
testcase_21 AC 129 ms
54,264 KB
testcase_22 AC 129 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

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() {
        long w = sc.nextInt();
        int d = sc.nextInt();
        long ans = 0;
        for (long i=d; i>0; i--) {
            long 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