結果

問題 No.51 やる気の問題
ユーザー takutakutakutaku
提出日時 2020-09-18 10:38:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 504 bytes
コンパイル時間 3,976 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,628 KB
最終ジャッジ日時 2024-06-22 07:48:27
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,964 KB
testcase_01 AC 111 ms
53,992 KB
testcase_02 AC 102 ms
52,848 KB
testcase_03 AC 115 ms
54,068 KB
testcase_04 AC 114 ms
54,092 KB
testcase_05 RE -
testcase_06 AC 115 ms
53,940 KB
testcase_07 AC 113 ms
53,748 KB
testcase_08 AC 102 ms
52,988 KB
testcase_09 RE -
testcase_10 AC 116 ms
54,024 KB
testcase_11 AC 124 ms
53,996 KB
testcase_12 AC 119 ms
54,024 KB
testcase_13 AC 105 ms
52,772 KB
testcase_14 AC 115 ms
54,204 KB
testcase_15 RE -
testcase_16 AC 112 ms
53,972 KB
testcase_17 AC 117 ms
54,020 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 111 ms
53,904 KB
testcase_21 AC 112 ms
54,216 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        int w = sc.nextInt();
        int d = sc.nextInt();
        
        int[] amount = new int[d];
        
        for(int i = 0; i < d; i++) {
            
            amount[i] = w / ((d-i)*(d-i));
            
            w = w - amount[i];
            
        }
        
        System.out.println(amount[d-1]);
        
	}
}
0