結果

問題 No.51 やる気の問題
ユーザー lrf141lrf141
提出日時 2016-12-04 00:55:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 319 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-05-05 17:40:21
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,012 KB
testcase_01 AC 100 ms
40,144 KB
testcase_02 AC 118 ms
41,152 KB
testcase_03 AC 122 ms
40,744 KB
testcase_04 AC 111 ms
40,292 KB
testcase_05 RE -
testcase_06 AC 103 ms
40,104 KB
testcase_07 AC 109 ms
40,920 KB
testcase_08 AC 109 ms
40,728 KB
testcase_09 RE -
testcase_10 AC 113 ms
41,352 KB
testcase_11 AC 104 ms
40,220 KB
testcase_12 AC 110 ms
40,812 KB
testcase_13 AC 112 ms
41,016 KB
testcase_14 AC 113 ms
40,920 KB
testcase_15 RE -
testcase_16 AC 102 ms
39,760 KB
testcase_17 AC 100 ms
39,988 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 114 ms
40,096 KB
testcase_21 AC 107 ms
39,728 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class no52{
    public static void main(String... args){
        Scanner scan = new Scanner(System.in);
        int w = scan.nextInt();
        int d = scan.nextInt();

        while(d != 1){
            w -= (w/(d*d));
            d--;
        }

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