結果

問題 No.51 やる気の問題
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:36:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 50,488 KB
最終ジャッジ日時 2024-09-13 09:14:43
合計ジャッジ時間 4,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,248 KB
testcase_01 AC 54 ms
50,488 KB
testcase_02 AC 54 ms
50,176 KB
testcase_03 AC 54 ms
50,332 KB
testcase_04 AC 54 ms
50,168 KB
testcase_05 AC 57 ms
50,240 KB
testcase_06 AC 57 ms
49,892 KB
testcase_07 AC 55 ms
49,912 KB
testcase_08 AC 54 ms
49,820 KB
testcase_09 AC 57 ms
50,188 KB
testcase_10 AC 55 ms
50,208 KB
testcase_11 AC 54 ms
50,180 KB
testcase_12 AC 56 ms
50,040 KB
testcase_13 AC 57 ms
49,704 KB
testcase_14 AC 55 ms
49,880 KB
testcase_15 AC 58 ms
50,196 KB
testcase_16 AC 54 ms
50,232 KB
testcase_17 AC 54 ms
50,348 KB
testcase_18 AC 57 ms
49,704 KB
testcase_19 AC 58 ms
50,212 KB
testcase_20 AC 56 ms
50,188 KB
testcase_21 AC 55 ms
50,444 KB
testcase_22 AC 57 ms
49,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {


    public static void main(String[] args) throws IOException {
        BufferedReader reader =new BufferedReader(new InputStreamReader(System.in));
        long W = Long.parseLong(reader.readLine());
        long D = Long.parseLong(reader.readLine());
        while(D !=1) {
            W = W - W/(D*D);
            D -= 1;
        }

        System.out.println(W);

    }
}
0