結果

問題 No.51 やる気の問題
ユーザー tsunabittsunabit
提出日時 2018-08-05 04:31:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 3,212 ms
コンパイル使用メモリ 78,376 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-09-19 18:00:32
合計ジャッジ時間 7,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,960 KB
testcase_01 AC 112 ms
53,068 KB
testcase_02 AC 126 ms
54,240 KB
testcase_03 AC 125 ms
54,008 KB
testcase_04 AC 124 ms
54,092 KB
testcase_05 AC 128 ms
54,064 KB
testcase_06 AC 128 ms
54,004 KB
testcase_07 AC 128 ms
54,068 KB
testcase_08 AC 114 ms
52,900 KB
testcase_09 AC 129 ms
54,004 KB
testcase_10 AC 126 ms
53,988 KB
testcase_11 AC 123 ms
54,056 KB
testcase_12 AC 126 ms
54,012 KB
testcase_13 AC 128 ms
53,832 KB
testcase_14 AC 125 ms
54,156 KB
testcase_15 AC 133 ms
54,064 KB
testcase_16 AC 134 ms
53,896 KB
testcase_17 AC 127 ms
54,112 KB
testcase_18 AC 134 ms
54,172 KB
testcase_19 AC 117 ms
52,848 KB
testcase_20 AC 129 ms
54,016 KB
testcase_21 AC 126 ms
54,072 KB
testcase_22 AC 135 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

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);
        long w = sc.nextInt(), d = sc.nextInt();
        for(long i = d; i > 1; i--) {
            //System.out.println(w / (Math.pow(i, 2)));
            w -= (int)(w / (i * i));
            //System.out.println(i + " " + w);
        }
        System.out.println(w);
    }
}
0