結果

問題 No.115 遠足のおやつ
ユーザー GrenacheGrenache
提出日時 2015-11-30 23:26:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 1,198 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-06-10 23:42:18
合計ジャッジ時間 8,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,660 KB
testcase_01 AC 111 ms
41,152 KB
testcase_02 AC 127 ms
40,072 KB
testcase_03 AC 102 ms
39,836 KB
testcase_04 AC 106 ms
39,980 KB
testcase_05 AC 110 ms
40,800 KB
testcase_06 AC 111 ms
41,124 KB
testcase_07 AC 117 ms
41,180 KB
testcase_08 AC 108 ms
40,904 KB
testcase_09 AC 110 ms
41,084 KB
testcase_10 AC 101 ms
39,968 KB
testcase_11 AC 108 ms
41,092 KB
testcase_12 AC 99 ms
40,136 KB
testcase_13 AC 111 ms
40,292 KB
testcase_14 AC 99 ms
39,712 KB
testcase_15 AC 100 ms
40,044 KB
testcase_16 AC 110 ms
41,068 KB
testcase_17 AC 114 ms
40,736 KB
testcase_18 AC 108 ms
41,040 KB
testcase_19 AC 107 ms
40,484 KB
testcase_20 AC 106 ms
40,096 KB
testcase_21 AC 126 ms
41,380 KB
testcase_22 AC 113 ms
40,300 KB
testcase_23 AC 108 ms
41,068 KB
testcase_24 AC 106 ms
40,332 KB
testcase_25 AC 115 ms
41,368 KB
testcase_26 AC 105 ms
40,088 KB
testcase_27 AC 110 ms
41,348 KB
testcase_28 AC 116 ms
41,476 KB
testcase_29 AC 101 ms
40,264 KB
testcase_30 AC 102 ms
39,812 KB
testcase_31 AC 104 ms
40,104 KB
testcase_32 AC 107 ms
40,560 KB
testcase_33 AC 113 ms
41,324 KB
testcase_34 AC 102 ms
40,016 KB
testcase_35 AC 112 ms
40,324 KB
testcase_36 AC 103 ms
39,968 KB
testcase_37 AC 114 ms
41,324 KB
testcase_38 AC 112 ms
40,936 KB
testcase_39 AC 101 ms
39,848 KB
testcase_40 AC 109 ms
41,108 KB
testcase_41 AC 100 ms
39,940 KB
testcase_42 AC 101 ms
39,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;


public class Main_yukicoder115 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int d = sc.nextInt();
        int k = sc.nextInt();

		List<Integer> ret = new ArrayList<Integer>();
        for (int i = 1; i <= n && k > 0; i++) {
        	if (isOK(i, n, d - i, k - 1)) {
        		ret.add(i);
        		d -= i;
        		k--;
        	}
        }

        if (k == 0) {
        	for (int kk = 0; kk < ret.size(); kk++) {
        		if (kk == 0) {
        			System.out.printf("%d", ret.get(kk));
        		} else {
        			System.out.printf(" %d", ret.get(kk));
        		}
        	}
        	System.out.println("");
        } else {
        	System.out.println("-1");
        }

        sc.close();
    }

    private static boolean isOK(int i, int n, int d, int k) {
    	if (k == 0) {
    		return d == 0;
    	}

    	int min = (i + k - 1) * (i + k) / 2 - (i - 1) * i / 2;
    	int max = n * (n + 1) / 2 - (n - k) *( n - k + 1) / 2;

    	if (d < min || d > max) {
    		return false;
    	} else {
    		return true;
    	}
	}
}
0