結果

問題 No.51 やる気の問題
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 20:34:56
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 255 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-12-23 04:28:45
合計ジャッジ時間 8,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,116 KB
testcase_01 AC 141 ms
41,640 KB
testcase_02 AC 144 ms
41,332 KB
testcase_03 AC 147 ms
41,344 KB
testcase_04 AC 154 ms
41,324 KB
testcase_05 RE -
testcase_06 AC 145 ms
41,684 KB
testcase_07 AC 142 ms
41,356 KB
testcase_08 AC 144 ms
41,504 KB
testcase_09 RE -
testcase_10 AC 142 ms
41,728 KB
testcase_11 AC 145 ms
41,256 KB
testcase_12 AC 143 ms
41,232 KB
testcase_13 AC 141 ms
41,324 KB
testcase_14 AC 143 ms
41,492 KB
testcase_15 RE -
testcase_16 AC 144 ms
41,812 KB
testcase_17 AC 144 ms
41,760 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 144 ms
41,496 KB
testcase_21 AC 143 ms
41,572 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