結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,248 KB
testcase_01 AC 122 ms
41,404 KB
testcase_02 AC 122 ms
41,420 KB
testcase_03 AC 122 ms
41,356 KB
testcase_04 AC 115 ms
40,444 KB
testcase_05 RE -
testcase_06 AC 122 ms
40,880 KB
testcase_07 AC 120 ms
41,100 KB
testcase_08 AC 122 ms
40,848 KB
testcase_09 RE -
testcase_10 AC 119 ms
41,064 KB
testcase_11 AC 119 ms
41,172 KB
testcase_12 AC 122 ms
41,404 KB
testcase_13 AC 121 ms
41,048 KB
testcase_14 AC 114 ms
40,232 KB
testcase_15 RE -
testcase_16 AC 124 ms
41,052 KB
testcase_17 AC 105 ms
39,668 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 124 ms
41,388 KB
testcase_21 AC 120 ms
40,944 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