結果

問題 No.115 遠足のおやつ
ユーザー tsunabittsunabit
提出日時 2020-03-01 16:29:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 79,620 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-06-11 00:02:46
合計ジャッジ時間 11,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,264 KB
testcase_01 AC 129 ms
41,284 KB
testcase_02 AC 153 ms
41,392 KB
testcase_03 AC 134 ms
41,164 KB
testcase_04 AC 145 ms
41,640 KB
testcase_05 AC 159 ms
41,516 KB
testcase_06 AC 116 ms
40,300 KB
testcase_07 AC 146 ms
41,712 KB
testcase_08 AC 134 ms
41,808 KB
testcase_09 AC 136 ms
41,440 KB
testcase_10 AC 132 ms
41,416 KB
testcase_11 AC 134 ms
41,560 KB
testcase_12 AC 139 ms
41,460 KB
testcase_13 AC 131 ms
41,248 KB
testcase_14 AC 152 ms
41,980 KB
testcase_15 AC 147 ms
41,612 KB
testcase_16 AC 147 ms
41,360 KB
testcase_17 AC 147 ms
41,576 KB
testcase_18 AC 138 ms
41,272 KB
testcase_19 AC 145 ms
41,564 KB
testcase_20 AC 148 ms
41,368 KB
testcase_21 AC 131 ms
40,656 KB
testcase_22 AC 148 ms
41,660 KB
testcase_23 AC 128 ms
41,212 KB
testcase_24 AC 154 ms
41,472 KB
testcase_25 AC 151 ms
41,520 KB
testcase_26 AC 151 ms
41,888 KB
testcase_27 AC 152 ms
41,772 KB
testcase_28 AC 146 ms
41,292 KB
testcase_29 AC 144 ms
41,600 KB
testcase_30 AC 152 ms
41,624 KB
testcase_31 AC 135 ms
40,196 KB
testcase_32 AC 129 ms
40,184 KB
testcase_33 AC 152 ms
41,736 KB
testcase_34 AC 151 ms
41,800 KB
testcase_35 AC 144 ms
42,056 KB
testcase_36 AC 157 ms
41,864 KB
testcase_37 AC 151 ms
41,716 KB
testcase_38 AC 154 ms
41,604 KB
testcase_39 AC 138 ms
41,176 KB
testcase_40 AC 139 ms
41,516 KB
testcase_41 AC 120 ms
40,044 KB
testcase_42 AC 155 ms
41,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No115 {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt(), d = s.nextInt(), k = s.nextInt(), sum = 0;
		int[] a = new int[k];
		
		for(int i = 0; i < k; i++) {
			a[i] = i + 1;
			sum += i + 1;
		}
		if(sum > d) {
			System.out.println(-1);
			return;
		}
		for(int i = 0; i < k; i++) {
			sum -= a[a.length-1-i];
			a[a.length-1-i]=Math.min(d-sum, n-i); 
			sum += a[a.length-1-i];
		}
		if(sum == d) {
			for(int i = 0; i < k; i++) {
				System.out.print(a[i] + " ");
			}
		}else {
			System.out.print(-1);
		}
 	}
}
0