結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tentententen
提出日時 2024-07-30 10:50:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,478 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 90,600 KB
実行使用メモリ 67,644 KB
最終ジャッジ日時 2024-07-30 10:50:15
合計ジャッジ時間 8,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,896 KB
testcase_01 AC 61 ms
50,844 KB
testcase_02 AC 298 ms
67,212 KB
testcase_03 AC 63 ms
50,884 KB
testcase_04 AC 280 ms
67,208 KB
testcase_05 AC 275 ms
67,644 KB
testcase_06 AC 282 ms
67,424 KB
testcase_07 AC 119 ms
54,872 KB
testcase_08 AC 216 ms
63,944 KB
testcase_09 AC 107 ms
52,572 KB
testcase_10 AC 171 ms
58,236 KB
testcase_11 AC 129 ms
54,584 KB
testcase_12 AC 154 ms
58,488 KB
testcase_13 AC 129 ms
54,980 KB
testcase_14 AC 114 ms
52,280 KB
testcase_15 AC 132 ms
54,736 KB
testcase_16 AC 165 ms
58,584 KB
testcase_17 AC 67 ms
51,112 KB
testcase_18 AC 64 ms
51,328 KB
testcase_19 AC 73 ms
51,152 KB
testcase_20 AC 67 ms
51,196 KB
testcase_21 AC 77 ms
51,168 KB
testcase_22 AC 185 ms
62,816 KB
testcase_23 AC 157 ms
58,596 KB
testcase_24 AC 109 ms
54,556 KB
testcase_25 AC 214 ms
63,396 KB
testcase_26 AC 127 ms
54,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long sum = sc.nextLong();
        Deque<Integer> ans = new ArrayDeque<>();
        for (int i = n; i >= 1; i--) {
            if (i <= sum) {
                ans.addFirst(i);
                sum -= i;
            }
        }
        System.out.println(ans.size());
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0