結果

問題 No.115 遠足のおやつ
ユーザー fal_rndfal_rnd
提出日時 2017-01-20 22:54:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-10 23:48:29
合計ジャッジ時間 9,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,476 KB
testcase_01 AC 125 ms
41,340 KB
testcase_02 AC 108 ms
40,272 KB
testcase_03 AC 109 ms
41,264 KB
testcase_04 AC 101 ms
40,112 KB
testcase_05 AC 113 ms
41,344 KB
testcase_06 AC 115 ms
41,372 KB
testcase_07 AC 97 ms
40,000 KB
testcase_08 AC 98 ms
40,420 KB
testcase_09 AC 106 ms
40,248 KB
testcase_10 AC 102 ms
40,236 KB
testcase_11 AC 110 ms
40,984 KB
testcase_12 AC 102 ms
40,184 KB
testcase_13 AC 119 ms
41,304 KB
testcase_14 AC 125 ms
41,264 KB
testcase_15 AC 121 ms
41,592 KB
testcase_16 AC 123 ms
41,708 KB
testcase_17 AC 115 ms
41,168 KB
testcase_18 AC 111 ms
41,008 KB
testcase_19 AC 101 ms
40,056 KB
testcase_20 AC 100 ms
40,252 KB
testcase_21 AC 98 ms
40,384 KB
testcase_22 AC 112 ms
41,620 KB
testcase_23 AC 95 ms
39,884 KB
testcase_24 AC 110 ms
41,320 KB
testcase_25 AC 118 ms
41,396 KB
testcase_26 AC 113 ms
41,376 KB
testcase_27 AC 121 ms
41,376 KB
testcase_28 AC 100 ms
40,552 KB
testcase_29 AC 109 ms
41,184 KB
testcase_30 AC 98 ms
39,584 KB
testcase_31 AC 113 ms
41,544 KB
testcase_32 AC 102 ms
40,428 KB
testcase_33 AC 101 ms
40,428 KB
testcase_34 AC 110 ms
41,324 KB
testcase_35 AC 101 ms
40,044 KB
testcase_36 AC 110 ms
41,292 KB
testcase_37 AC 97 ms
40,140 KB
testcase_38 AC 106 ms
40,172 KB
testcase_39 AC 104 ms
40,108 KB
testcase_40 AC 110 ms
41,244 KB
testcase_41 AC 117 ms
41,364 KB
testcase_42 AC 106 ms
40,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int sum=0,n=s.nextInt(),d=s.nextInt(),k=s.nextInt();
		int[] r=new int[k];
		for(int i=0;i<k;i++) {
			sum+=i+1;
			r[i]=i+1;
		}
		if(sum>d) {
			System.out.println(-1);
			return;
		}
		for(int i=0;i<k;i++) {
			sum-=r[r.length-1-i];
			r[r.length-1-i]=Math.min(d-sum, n-i);
			sum+=Math.min(d-sum, n-i);
		}
		if(sum==d) {
			System.out.println(Arrays.toString(r).replaceAll("[^0-9,]", "").replaceAll(",", " "));
		}else {
			System.out.println(-1);
		}
	}
}
0