結果

問題 No.51 やる気の問題
ユーザー marumaru
提出日時 2016-03-22 22:52:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 3,611 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-01 15:13:42
合計ジャッジ時間 7,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,080 KB
testcase_01 AC 132 ms
41,332 KB
testcase_02 AC 118 ms
40,368 KB
testcase_03 AC 133 ms
41,276 KB
testcase_04 AC 131 ms
41,368 KB
testcase_05 AC 137 ms
41,532 KB
testcase_06 AC 133 ms
41,120 KB
testcase_07 AC 120 ms
39,872 KB
testcase_08 AC 131 ms
41,404 KB
testcase_09 AC 136 ms
41,568 KB
testcase_10 AC 133 ms
41,260 KB
testcase_11 AC 133 ms
41,220 KB
testcase_12 AC 131 ms
41,132 KB
testcase_13 AC 136 ms
41,184 KB
testcase_14 AC 135 ms
41,532 KB
testcase_15 AC 136 ms
41,132 KB
testcase_16 AC 132 ms
40,936 KB
testcase_17 AC 131 ms
41,288 KB
testcase_18 AC 136 ms
41,260 KB
testcase_19 AC 135 ms
41,516 KB
testcase_20 AC 135 ms
41,640 KB
testcase_21 AC 135 ms
41,484 KB
testcase_22 AC 138 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

	}
}
0