結果

問題 No.115 遠足のおやつ
ユーザー tentententen
提出日時 2020-11-17 19:45:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 1,121 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-06-11 00:05:53
合計ジャッジ時間 8,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,188 KB
testcase_01 AC 124 ms
41,252 KB
testcase_02 AC 120 ms
41,248 KB
testcase_03 AC 120 ms
40,056 KB
testcase_04 AC 119 ms
41,148 KB
testcase_05 AC 116 ms
41,184 KB
testcase_06 AC 116 ms
41,464 KB
testcase_07 AC 107 ms
40,092 KB
testcase_08 AC 109 ms
41,264 KB
testcase_09 AC 105 ms
40,344 KB
testcase_10 AC 115 ms
41,296 KB
testcase_11 AC 112 ms
41,244 KB
testcase_12 AC 114 ms
41,068 KB
testcase_13 AC 99 ms
39,856 KB
testcase_14 AC 103 ms
40,184 KB
testcase_15 AC 114 ms
41,264 KB
testcase_16 AC 99 ms
40,068 KB
testcase_17 AC 99 ms
40,052 KB
testcase_18 AC 101 ms
40,344 KB
testcase_19 AC 114 ms
41,448 KB
testcase_20 AC 113 ms
41,516 KB
testcase_21 AC 120 ms
41,440 KB
testcase_22 AC 116 ms
41,284 KB
testcase_23 AC 104 ms
40,036 KB
testcase_24 AC 109 ms
41,320 KB
testcase_25 AC 115 ms
41,420 KB
testcase_26 AC 111 ms
41,080 KB
testcase_27 AC 126 ms
41,184 KB
testcase_28 AC 116 ms
41,564 KB
testcase_29 AC 102 ms
40,372 KB
testcase_30 AC 116 ms
41,464 KB
testcase_31 AC 110 ms
41,112 KB
testcase_32 AC 115 ms
41,212 KB
testcase_33 AC 103 ms
40,268 KB
testcase_34 AC 108 ms
40,200 KB
testcase_35 AC 113 ms
41,332 KB
testcase_36 AC 120 ms
41,216 KB
testcase_37 AC 121 ms
41,348 KB
testcase_38 AC 117 ms
41,268 KB
testcase_39 AC 106 ms
40,252 KB
testcase_40 AC 104 ms
40,008 KB
testcase_41 AC 112 ms
41,292 KB
testcase_42 AC 113 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[k];
        for (int i = 0; i < k; i++) {
            arr[i] = i + 1;
            d -= i + 1;
        }
        if (d < 0 || n < k) {
            System.out.println(-1);
            return;
        }
        int max = n;
        for (int i = k - 1; i >= 0 && d > 0; i--) {
            if (d + arr[i] - max >= 0) {
                d += arr[i];
                arr[i] = max;
                d -= max;
                max--;
            } else {
                arr[i] += d;
                d = 0;
            }
        }
        if (d > 0) {
            System.out.println(-1);
        } else {
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < k; i++) {
                if (i > 0) {
                    sb.append(" ");
                }
                sb.append(arr[i]);
            }
            System.out.println(sb);
        }
    }
}
0