結果

問題 No.51 やる気の問題
ユーザー tentententen
提出日時 2020-11-05 08:33:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-07-22 10:49:09
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,056 KB
testcase_01 AC 112 ms
41,168 KB
testcase_02 AC 115 ms
41,128 KB
testcase_03 AC 104 ms
40,112 KB
testcase_04 AC 114 ms
41,028 KB
testcase_05 AC 120 ms
41,340 KB
testcase_06 AC 110 ms
40,852 KB
testcase_07 AC 106 ms
39,920 KB
testcase_08 AC 102 ms
39,732 KB
testcase_09 AC 112 ms
39,852 KB
testcase_10 AC 115 ms
41,304 KB
testcase_11 AC 103 ms
40,056 KB
testcase_12 AC 117 ms
41,368 KB
testcase_13 AC 117 ms
40,884 KB
testcase_14 AC 111 ms
40,824 KB
testcase_15 AC 124 ms
41,136 KB
testcase_16 AC 109 ms
40,388 KB
testcase_17 AC 121 ms
41,196 KB
testcase_18 AC 120 ms
41,376 KB
testcase_19 AC 119 ms
41,104 KB
testcase_20 AC 116 ms
41,124 KB
testcase_21 AC 113 ms
41,012 KB
testcase_22 AC 109 ms
39,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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