結果

問題 No.51 やる気の問題
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 12:37:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-11-25 05:27:37
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,856 KB
testcase_01 AC 121 ms
54,184 KB
testcase_02 AC 109 ms
52,512 KB
testcase_03 AC 111 ms
52,384 KB
testcase_04 AC 108 ms
53,940 KB
testcase_05 AC 104 ms
52,548 KB
testcase_06 AC 110 ms
53,664 KB
testcase_07 AC 112 ms
53,708 KB
testcase_08 AC 110 ms
53,632 KB
testcase_09 AC 115 ms
54,088 KB
testcase_10 AC 115 ms
54,020 KB
testcase_11 AC 115 ms
53,808 KB
testcase_12 AC 112 ms
53,496 KB
testcase_13 AC 116 ms
53,932 KB
testcase_14 AC 119 ms
53,856 KB
testcase_15 AC 112 ms
54,008 KB
testcase_16 AC 121 ms
53,792 KB
testcase_17 AC 114 ms
54,008 KB
testcase_18 AC 114 ms
53,896 KB
testcase_19 AC 103 ms
52,472 KB
testcase_20 AC 113 ms
53,928 KB
testcase_21 AC 110 ms
53,840 KB
testcase_22 AC 103 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

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