結果

問題 No.51 やる気の問題
ユーザー 練習生練習生
提出日時 2015-08-19 15:10:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-07-18 10:30:06
合計ジャッジ時間 5,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,704 KB
testcase_01 AC 94 ms
41,364 KB
testcase_02 AC 97 ms
41,320 KB
testcase_03 AC 95 ms
41,076 KB
testcase_04 AC 101 ms
40,144 KB
testcase_05 AC 109 ms
41,564 KB
testcase_06 AC 99 ms
41,396 KB
testcase_07 AC 108 ms
40,772 KB
testcase_08 AC 99 ms
40,288 KB
testcase_09 AC 109 ms
41,556 KB
testcase_10 AC 95 ms
41,204 KB
testcase_11 AC 98 ms
41,260 KB
testcase_12 AC 102 ms
40,024 KB
testcase_13 AC 103 ms
40,296 KB
testcase_14 AC 100 ms
41,796 KB
testcase_15 AC 109 ms
41,320 KB
testcase_16 AC 108 ms
40,884 KB
testcase_17 AC 107 ms
41,260 KB
testcase_18 AC 111 ms
40,112 KB
testcase_19 AC 105 ms
40,088 KB
testcase_20 AC 109 ms
41,376 KB
testcase_21 AC 109 ms
41,472 KB
testcase_22 AC 109 ms
40,156 KB
権限があれば一括ダウンロードができます

ソースコード

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();
		sc.close();
		for(int i = d; i > 1; i--){
			w = w - (int)(w / Math.pow(i, 2));
		}
		System.out.println(w);
	}
}
0