結果

問題 No.51 やる気の問題
ユーザー papipenpapipen
提出日時 2017-04-06 21:39:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 273 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-17 21:40:08
合計ジャッジ時間 5,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,976 KB
testcase_01 AC 105 ms
41,108 KB
testcase_02 AC 116 ms
40,244 KB
testcase_03 AC 114 ms
40,948 KB
testcase_04 AC 109 ms
41,316 KB
testcase_05 RE -
testcase_06 AC 117 ms
40,924 KB
testcase_07 AC 116 ms
41,256 KB
testcase_08 AC 120 ms
41,264 KB
testcase_09 RE -
testcase_10 AC 108 ms
39,904 KB
testcase_11 AC 115 ms
41,324 KB
testcase_12 AC 103 ms
41,460 KB
testcase_13 AC 115 ms
39,980 KB
testcase_14 AC 110 ms
40,924 KB
testcase_15 RE -
testcase_16 AC 112 ms
41,400 KB
testcase_17 AC 102 ms
41,124 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 102 ms
41,252 KB
testcase_21 AC 114 ms
41,268 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N051{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int w = s.nextInt();
		int d = s.nextInt();
		int a = d - 1;
		for(int i = 0; i < a; i++){
			w -= w / (d * d);
			d--;
		}
		System.out.println(w);
	}
}
0