結果

問題 No.51 やる気の問題
ユーザー kano_townkano_town
提出日時 2014-11-19 19:46:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 3,147 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-10 21:16:41
合計ジャッジ時間 7,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,996 KB
testcase_01 AC 123 ms
54,140 KB
testcase_02 AC 124 ms
54,452 KB
testcase_03 AC 122 ms
54,144 KB
testcase_04 AC 122 ms
54,096 KB
testcase_05 RE -
testcase_06 AC 116 ms
54,020 KB
testcase_07 AC 112 ms
53,012 KB
testcase_08 AC 120 ms
53,900 KB
testcase_09 RE -
testcase_10 AC 120 ms
41,044 KB
testcase_11 AC 115 ms
41,396 KB
testcase_12 AC 124 ms
41,448 KB
testcase_13 AC 116 ms
41,216 KB
testcase_14 AC 106 ms
41,588 KB
testcase_15 RE -
testcase_16 AC 131 ms
41,480 KB
testcase_17 AC 129 ms
41,828 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 108 ms
41,408 KB
testcase_21 AC 116 ms
41,308 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder51 {

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