結果

問題 No.51 やる気の問題
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 20:34:56
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 255 bytes
コンパイル時間 2,727 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 55,732 KB
最終ジャッジ日時 2024-06-02 08:55:25
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,744 KB
testcase_01 AC 91 ms
41,516 KB
testcase_02 AC 96 ms
41,248 KB
testcase_03 AC 103 ms
41,896 KB
testcase_04 AC 103 ms
41,272 KB
testcase_05 RE -
testcase_06 AC 113 ms
41,540 KB
testcase_07 AC 103 ms
41,712 KB
testcase_08 AC 95 ms
41,864 KB
testcase_09 RE -
testcase_10 AC 104 ms
41,516 KB
testcase_11 AC 106 ms
41,444 KB
testcase_12 AC 92 ms
41,364 KB
testcase_13 AC 103 ms
41,412 KB
testcase_14 AC 105 ms
41,540 KB
testcase_15 RE -
testcase_16 AC 104 ms
41,200 KB
testcase_17 AC 96 ms
39,868 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 105 ms
41,332 KB
testcase_21 AC 106 ms
41,588 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No51 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		int D = sc.nextInt();
		while(D != 1) {
			W -= (W/(D*D));
			D--;
		}
		System.out.println(W);
	}
}
0