結果

問題 No.115 遠足のおやつ
ユーザー tentententen
提出日時 2020-11-17 19:43:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,112 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-07-23 08:26:27
合計ジャッジ時間 9,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 131 ms
54,008 KB
testcase_02 AC 133 ms
54,096 KB
testcase_03 AC 132 ms
54,156 KB
testcase_04 AC 135 ms
53,968 KB
testcase_05 AC 134 ms
54,116 KB
testcase_06 AC 135 ms
54,124 KB
testcase_07 AC 135 ms
54,196 KB
testcase_08 AC 132 ms
53,832 KB
testcase_09 AC 131 ms
53,984 KB
testcase_10 AC 129 ms
53,976 KB
testcase_11 AC 124 ms
53,208 KB
testcase_12 AC 133 ms
53,900 KB
testcase_13 AC 135 ms
54,024 KB
testcase_14 AC 133 ms
53,988 KB
testcase_15 AC 132 ms
54,048 KB
testcase_16 AC 134 ms
54,140 KB
testcase_17 AC 132 ms
54,024 KB
testcase_18 AC 131 ms
53,984 KB
testcase_19 AC 131 ms
54,216 KB
testcase_20 AC 130 ms
53,868 KB
testcase_21 AC 134 ms
54,120 KB
testcase_22 AC 129 ms
54,236 KB
testcase_23 AC 131 ms
54,188 KB
testcase_24 AC 133 ms
54,268 KB
testcase_25 AC 131 ms
54,460 KB
testcase_26 AC 130 ms
54,184 KB
testcase_27 AC 131 ms
54,132 KB
testcase_28 AC 129 ms
54,328 KB
testcase_29 AC 131 ms
54,004 KB
testcase_30 AC 132 ms
54,012 KB
testcase_31 AC 131 ms
54,188 KB
testcase_32 AC 132 ms
54,180 KB
testcase_33 AC 130 ms
54,104 KB
testcase_34 AC 132 ms
54,276 KB
testcase_35 AC 116 ms
52,988 KB
testcase_36 AC 131 ms
54,044 KB
testcase_37 AC 128 ms
54,308 KB
testcase_38 AC 129 ms
54,148 KB
testcase_39 AC 131 ms
54,164 KB
testcase_40 AC 130 ms
54,380 KB
testcase_41 AC 129 ms
54,040 KB
testcase_42 AC 131 ms
54,256 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) {
            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