結果

問題 No.51 やる気の問題
ユーザー soujikisoujiki
提出日時 2015-04-27 16:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 330 bytes
コンパイル時間 3,293 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-05 04:53:38
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,228 KB
testcase_01 AC 125 ms
41,284 KB
testcase_02 AC 124 ms
41,196 KB
testcase_03 AC 130 ms
41,296 KB
testcase_04 AC 129 ms
41,404 KB
testcase_05 AC 128 ms
41,480 KB
testcase_06 AC 116 ms
41,360 KB
testcase_07 AC 131 ms
41,068 KB
testcase_08 AC 124 ms
40,956 KB
testcase_09 AC 125 ms
41,272 KB
testcase_10 AC 129 ms
41,340 KB
testcase_11 AC 116 ms
41,056 KB
testcase_12 AC 126 ms
41,316 KB
testcase_13 AC 132 ms
41,120 KB
testcase_14 AC 129 ms
41,032 KB
testcase_15 AC 134 ms
41,144 KB
testcase_16 AC 124 ms
41,148 KB
testcase_17 AC 125 ms
41,212 KB
testcase_18 AC 131 ms
41,392 KB
testcase_19 AC 118 ms
41,284 KB
testcase_20 AC 129 ms
41,204 KB
testcase_21 AC 127 ms
41,164 KB
testcase_22 AC 116 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_51{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int W = stdIn.nextInt();
		int D = stdIn.nextInt();
		while(true){
			int count = W/(int)Math.pow(D,2);
			W -= count;
			D--;
			if(W<=0){
				System.out.println(count);
				break;
			} 
		}
	}
}
0