結果

問題 No.51 やる気の問題
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 12:35:19
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 288 bytes
コンパイル時間 2,955 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-05-03 23:53:36
合計ジャッジ時間 6,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,392 KB
testcase_01 AC 105 ms
40,136 KB
testcase_02 AC 123 ms
41,376 KB
testcase_03 AC 125 ms
41,240 KB
testcase_04 AC 120 ms
41,028 KB
testcase_05 RE -
testcase_06 AC 108 ms
40,284 KB
testcase_07 AC 105 ms
40,000 KB
testcase_08 AC 111 ms
41,008 KB
testcase_09 RE -
testcase_10 AC 101 ms
40,248 KB
testcase_11 AC 114 ms
40,932 KB
testcase_12 AC 108 ms
40,180 KB
testcase_13 AC 104 ms
40,128 KB
testcase_14 AC 111 ms
40,920 KB
testcase_15 RE -
testcase_16 AC 105 ms
40,408 KB
testcase_17 AC 111 ms
41,240 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 115 ms
40,360 KB
testcase_21 AC 127 ms
41,180 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