結果

問題 No.51 やる気の問題
ユーザー jimanojimano
提出日時 2017-05-06 10:52:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 50,444 KB
最終ジャッジ日時 2024-09-14 13:48:51
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,144 KB
testcase_01 AC 56 ms
50,132 KB
testcase_02 AC 55 ms
50,120 KB
testcase_03 AC 55 ms
50,208 KB
testcase_04 AC 56 ms
50,056 KB
testcase_05 AC 58 ms
50,180 KB
testcase_06 AC 58 ms
49,836 KB
testcase_07 AC 56 ms
49,920 KB
testcase_08 AC 56 ms
49,828 KB
testcase_09 AC 58 ms
50,152 KB
testcase_10 AC 56 ms
50,092 KB
testcase_11 AC 55 ms
50,124 KB
testcase_12 AC 56 ms
50,028 KB
testcase_13 AC 56 ms
50,076 KB
testcase_14 AC 56 ms
50,284 KB
testcase_15 AC 58 ms
50,192 KB
testcase_16 AC 56 ms
49,944 KB
testcase_17 AC 56 ms
50,444 KB
testcase_18 AC 57 ms
50,172 KB
testcase_19 AC 56 ms
49,892 KB
testcase_20 AC 56 ms
50,068 KB
testcase_21 AC 56 ms
50,284 KB
testcase_22 AC 56 ms
49,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main{
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			long w = Integer.parseInt(br.readLine());
			int d = Integer.parseInt(br.readLine());
			int moto = 0;

			while (d > 0) {
				moto = (int)w / d / d;
				w -= moto;
				d--;
			}
			System.out.println(moto);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0