結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tentententen
提出日時 2023-08-08 15:06:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,815 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 84,584 KB
実行使用メモリ 57,736 KB
最終ジャッジ日時 2024-11-08 20:46:58
合計ジャッジ時間 9,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,576 KB
testcase_01 AC 66 ms
37,660 KB
testcase_02 AC 291 ms
56,960 KB
testcase_03 AC 64 ms
37,540 KB
testcase_04 AC 290 ms
57,736 KB
testcase_05 AC 288 ms
57,232 KB
testcase_06 AC 297 ms
57,152 KB
testcase_07 AC 133 ms
42,136 KB
testcase_08 AC 248 ms
52,632 KB
testcase_09 AC 113 ms
40,520 KB
testcase_10 AC 181 ms
46,704 KB
testcase_11 AC 120 ms
41,340 KB
testcase_12 AC 163 ms
46,848 KB
testcase_13 AC 141 ms
43,304 KB
testcase_14 AC 103 ms
40,816 KB
testcase_15 AC 137 ms
42,272 KB
testcase_16 AC 161 ms
47,004 KB
testcase_17 AC 74 ms
38,080 KB
testcase_18 AC 68 ms
38,088 KB
testcase_19 AC 69 ms
37,788 KB
testcase_20 AC 79 ms
38,220 KB
testcase_21 AC 69 ms
37,788 KB
testcase_22 AC 218 ms
52,832 KB
testcase_23 AC 167 ms
46,984 KB
testcase_24 AC 112 ms
40,832 KB
testcase_25 AC 229 ms
53,820 KB
testcase_26 AC 135 ms
42,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long s = sc.nextLong();
        ArrayDeque<Integer> ans = new ArrayDeque<>();
        for (int i = n; i >= 1; i--) {
            if (s >= i) {
                ans.addFirst(i);
                s -= i;
            }
        }
        System.out.println(ans.size());
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0