結果

問題 No.51 やる気の問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-04 12:34:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-09-21 20:29:41
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,124 KB
testcase_01 AC 116 ms
41,060 KB
testcase_02 AC 124 ms
41,064 KB
testcase_03 AC 117 ms
41,008 KB
testcase_04 AC 119 ms
41,248 KB
testcase_05 AC 112 ms
39,744 KB
testcase_06 AC 106 ms
39,688 KB
testcase_07 AC 123 ms
41,024 KB
testcase_08 AC 114 ms
40,652 KB
testcase_09 AC 114 ms
40,132 KB
testcase_10 AC 129 ms
41,404 KB
testcase_11 AC 125 ms
40,840 KB
testcase_12 AC 108 ms
40,032 KB
testcase_13 AC 130 ms
41,248 KB
testcase_14 AC 126 ms
40,900 KB
testcase_15 AC 110 ms
39,720 KB
testcase_16 AC 121 ms
41,044 KB
testcase_17 AC 119 ms
41,280 KB
testcase_18 AC 112 ms
39,856 KB
testcase_19 AC 121 ms
41,184 KB
testcase_20 AC 122 ms
40,840 KB
testcase_21 AC 117 ms
41,120 KB
testcase_22 AC 122 ms
40,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		int W = in.nextInt();
		int D = in.nextInt();
		int temp = 0;

		for(int i=D; i>1; i--) {
			W -= (W / ((long)i * i));
		}

		System.out.println(W);
	}
}
0