結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー ks2mks2m
提出日時 2022-08-05 21:39:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 3,456 ms
コンパイル使用メモリ 76,228 KB
実行使用メモリ 55,664 KB
最終ジャッジ日時 2024-09-15 17:58:02
合計ジャッジ時間 10,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,380 KB
testcase_01 AC 131 ms
41,264 KB
testcase_02 AC 271 ms
55,664 KB
testcase_03 AC 136 ms
41,208 KB
testcase_04 AC 279 ms
54,528 KB
testcase_05 AC 274 ms
54,948 KB
testcase_06 AC 278 ms
55,476 KB
testcase_07 AC 181 ms
44,348 KB
testcase_08 AC 258 ms
50,600 KB
testcase_09 AC 175 ms
42,328 KB
testcase_10 AC 216 ms
47,412 KB
testcase_11 AC 176 ms
43,380 KB
testcase_12 AC 196 ms
46,324 KB
testcase_13 AC 186 ms
45,904 KB
testcase_14 AC 176 ms
42,972 KB
testcase_15 AC 189 ms
45,400 KB
testcase_16 AC 199 ms
46,384 KB
testcase_17 AC 135 ms
41,060 KB
testcase_18 AC 133 ms
40,988 KB
testcase_19 AC 137 ms
41,032 KB
testcase_20 AC 137 ms
41,068 KB
testcase_21 AC 137 ms
41,180 KB
testcase_22 AC 232 ms
49,228 KB
testcase_23 AC 205 ms
46,288 KB
testcase_24 AC 169 ms
43,032 KB
testcase_25 AC 245 ms
49,592 KB
testcase_26 AC 193 ms
45,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long s = sc.nextLong();
		sc.close();

		List<Integer> list = new ArrayList<>();
		long r = s;
		int x = n;
		while (r > 0) {
			if (x > r) {
				x = (int) r;
			}
			list.add(x);
			r -= x;
			x--;
		}

		System.out.println(list.size());
		StringBuilder sb = new StringBuilder();
		for (int i = list.size() - 1; i >= 0; i--) {
			sb.append(list.get(i)).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0