結果

問題 No.51 やる気の問題
ユーザー marumaru
提出日時 2016-03-22 22:46:09
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 295 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 73,692 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-10-01 15:13:23
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,124 KB
testcase_01 AC 100 ms
39,700 KB
testcase_02 AC 105 ms
40,060 KB
testcase_03 AC 114 ms
41,100 KB
testcase_04 AC 113 ms
41,336 KB
testcase_05 RE -
testcase_06 AC 105 ms
40,484 KB
testcase_07 AC 105 ms
40,432 KB
testcase_08 AC 100 ms
39,964 KB
testcase_09 RE -
testcase_10 AC 116 ms
41,124 KB
testcase_11 AC 112 ms
41,188 KB
testcase_12 AC 111 ms
41,116 KB
testcase_13 AC 103 ms
40,348 KB
testcase_14 AC 102 ms
40,232 KB
testcase_15 RE -
testcase_16 AC 111 ms
41,120 KB
testcase_17 AC 112 ms
41,012 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 109 ms
40,304 KB
testcase_21 AC 113 ms
41,228 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_51 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int w = stdIn.nextInt();
		int d = stdIn.nextInt();
		
		for (int i = d; i > 1; i--) {
			w = w - (w / (i * i));	
		}
		
		System.out.println(w);

	}
}
0