結果

問題 No.51 やる気の問題
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 12:35:19
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 288 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-11-25 05:27:26
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,672 KB
testcase_01 AC 117 ms
53,988 KB
testcase_02 AC 120 ms
53,472 KB
testcase_03 AC 121 ms
53,996 KB
testcase_04 AC 119 ms
53,520 KB
testcase_05 RE -
testcase_06 AC 117 ms
53,876 KB
testcase_07 AC 106 ms
52,476 KB
testcase_08 AC 116 ms
54,072 KB
testcase_09 RE -
testcase_10 AC 104 ms
52,640 KB
testcase_11 AC 108 ms
52,672 KB
testcase_12 AC 107 ms
52,656 KB
testcase_13 AC 105 ms
52,432 KB
testcase_14 AC 116 ms
53,940 KB
testcase_15 RE -
testcase_16 AC 107 ms
52,720 KB
testcase_17 AC 107 ms
52,232 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 117 ms
53,752 KB
testcase_21 AC 115 ms
54,224 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		int w = s.nextInt(),d = s.nextInt(),lastw=0;
		
		while(d>0){
			lastw = w / (d*d);
			w -= lastw;
			d--;
		}
		
		System.out.println(lastw);
    }
}
0