結果

問題 No.115 遠足のおやつ
ユーザー fal_rndfal_rnd
提出日時 2017-01-20 22:51:18
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 5,136 ms
コンパイル使用メモリ 75,512 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-12-23 02:55:42
合計ジャッジ時間 12,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 154 ms
41,144 KB
testcase_03 WA -
testcase_04 AC 150 ms
41,172 KB
testcase_05 AC 148 ms
41,288 KB
testcase_06 AC 149 ms
41,252 KB
testcase_07 AC 151 ms
41,036 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 152 ms
41,144 KB
testcase_14 AC 156 ms
41,224 KB
testcase_15 AC 159 ms
41,212 KB
testcase_16 AC 149 ms
41,320 KB
testcase_17 AC 152 ms
41,312 KB
testcase_18 AC 149 ms
41,348 KB
testcase_19 AC 148 ms
41,280 KB
testcase_20 AC 151 ms
41,268 KB
testcase_21 AC 147 ms
41,028 KB
testcase_22 AC 146 ms
41,200 KB
testcase_23 WA -
testcase_24 AC 150 ms
41,532 KB
testcase_25 AC 158 ms
41,304 KB
testcase_26 AC 146 ms
41,420 KB
testcase_27 AC 153 ms
41,040 KB
testcase_28 AC 150 ms
41,396 KB
testcase_29 AC 150 ms
41,164 KB
testcase_30 AC 151 ms
41,352 KB
testcase_31 AC 155 ms
41,628 KB
testcase_32 AC 151 ms
41,464 KB
testcase_33 AC 148 ms
41,248 KB
testcase_34 AC 152 ms
41,184 KB
testcase_35 AC 149 ms
40,732 KB
testcase_36 AC 157 ms
41,452 KB
testcase_37 AC 154 ms
41,272 KB
testcase_38 AC 156 ms
41,472 KB
testcase_39 WA -
testcase_40 AC 155 ms
41,124 KB
testcase_41 AC 152 ms
41,072 KB
testcase_42 AC 150 ms
41,304 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);
		}
		System.out.println(Arrays.toString(r).replaceAll("[^0-9,]", "").replaceAll(",", " "));
	}
}
0