結果

問題 No.51 やる気の問題
ユーザー GrenacheGrenache
提出日時 2015-09-22 23:42:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-19 08:43:22
合計ジャッジ時間 7,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,092 KB
testcase_01 AC 131 ms
41,220 KB
testcase_02 AC 129 ms
41,536 KB
testcase_03 AC 130 ms
41,172 KB
testcase_04 AC 130 ms
41,016 KB
testcase_05 AC 135 ms
41,292 KB
testcase_06 AC 132 ms
41,308 KB
testcase_07 AC 132 ms
41,416 KB
testcase_08 AC 133 ms
41,176 KB
testcase_09 AC 134 ms
41,172 KB
testcase_10 AC 132 ms
41,408 KB
testcase_11 AC 131 ms
41,304 KB
testcase_12 AC 131 ms
41,128 KB
testcase_13 AC 131 ms
41,160 KB
testcase_14 AC 131 ms
41,108 KB
testcase_15 AC 135 ms
41,536 KB
testcase_16 AC 147 ms
41,016 KB
testcase_17 AC 121 ms
40,648 KB
testcase_18 AC 132 ms
41,148 KB
testcase_19 AC 132 ms
41,008 KB
testcase_20 AC 117 ms
39,972 KB
testcase_21 AC 129 ms
41,472 KB
testcase_22 AC 135 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder51 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long w = sc.nextLong();
        long d = sc.nextLong();
        for (; d >= 2; d--) {
        	w -= w / (d * d);
        }

        System.out.println(w);
        
        sc.close();
    }
}
0