結果

問題 No.51 やる気の問題
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-12-05 13:40:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-27 21:17:54
合計ジャッジ時間 7,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,316 KB
testcase_01 AC 139 ms
41,068 KB
testcase_02 AC 136 ms
41,384 KB
testcase_03 AC 133 ms
41,188 KB
testcase_04 AC 133 ms
41,216 KB
testcase_05 AC 127 ms
41,340 KB
testcase_06 AC 138 ms
41,092 KB
testcase_07 AC 139 ms
41,276 KB
testcase_08 AC 138 ms
41,420 KB
testcase_09 AC 139 ms
41,488 KB
testcase_10 AC 140 ms
41,340 KB
testcase_11 AC 134 ms
41,248 KB
testcase_12 AC 137 ms
41,240 KB
testcase_13 AC 136 ms
41,332 KB
testcase_14 AC 139 ms
40,912 KB
testcase_15 AC 146 ms
41,236 KB
testcase_16 AC 140 ms
41,564 KB
testcase_17 AC 139 ms
41,320 KB
testcase_18 AC 141 ms
41,112 KB
testcase_19 AC 143 ms
41,304 KB
testcase_20 AC 125 ms
39,960 KB
testcase_21 AC 136 ms
40,980 KB
testcase_22 AC 139 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_051 {// やる気の問題
	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--) {
			int tmp = W / i  / i;
			W -= tmp;
		}
		System.out.println(W);
	}
}
0