結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tentententen
提出日時 2023-08-08 15:06:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,815 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 84,848 KB
実行使用メモリ 67,824 KB
最終ジャッジ日時 2024-04-26 07:45:31
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
50,808 KB
testcase_01 AC 65 ms
51,148 KB
testcase_02 AC 280 ms
67,568 KB
testcase_03 AC 63 ms
50,980 KB
testcase_04 AC 272 ms
66,960 KB
testcase_05 AC 290 ms
67,824 KB
testcase_06 AC 304 ms
67,340 KB
testcase_07 AC 132 ms
54,680 KB
testcase_08 AC 232 ms
63,472 KB
testcase_09 AC 100 ms
52,400 KB
testcase_10 AC 174 ms
58,128 KB
testcase_11 AC 122 ms
54,848 KB
testcase_12 AC 147 ms
58,624 KB
testcase_13 AC 141 ms
54,752 KB
testcase_14 AC 109 ms
52,564 KB
testcase_15 AC 132 ms
54,828 KB
testcase_16 AC 151 ms
58,460 KB
testcase_17 AC 68 ms
51,104 KB
testcase_18 AC 68 ms
50,824 KB
testcase_19 AC 69 ms
50,764 KB
testcase_20 AC 74 ms
51,236 KB
testcase_21 AC 70 ms
51,224 KB
testcase_22 AC 204 ms
62,804 KB
testcase_23 AC 160 ms
58,172 KB
testcase_24 AC 116 ms
54,444 KB
testcase_25 AC 221 ms
63,400 KB
testcase_26 AC 138 ms
55,100 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