結果

問題 No.51 やる気の問題
ユーザー tsunabittsunabit
提出日時 2018-08-05 04:17:28
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 466 bytes
コンパイル時間 4,094 ms
コンパイル使用メモリ 75,812 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-09-19 17:59:47
合計ジャッジ時間 6,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,872 KB
testcase_01 AC 106 ms
41,160 KB
testcase_02 AC 109 ms
41,220 KB
testcase_03 AC 98 ms
40,336 KB
testcase_04 AC 102 ms
40,104 KB
testcase_05 RE -
testcase_06 AC 111 ms
41,432 KB
testcase_07 AC 112 ms
41,244 KB
testcase_08 AC 99 ms
40,052 KB
testcase_09 RE -
testcase_10 AC 98 ms
40,160 KB
testcase_11 AC 110 ms
41,260 KB
testcase_12 AC 102 ms
40,140 KB
testcase_13 AC 98 ms
40,316 KB
testcase_14 AC 104 ms
41,156 KB
testcase_15 RE -
testcase_16 AC 116 ms
41,184 KB
testcase_17 AC 109 ms
41,000 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 109 ms
41,336 KB
testcase_21 AC 99 ms
40,332 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No51 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int w = sc.nextInt(), d = sc.nextInt();
        for(int i = d; i > 1; i--) {
            //System.out.println(w / (Math.pow(i, 2)));
            w -= w / (i * i);
            //System.out.println(w);
        }
        System.out.println(w);
    }
}
0