結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tentententen
提出日時 2022-09-27 08:47:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,497 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 62,636 KB
最終ジャッジ日時 2024-06-02 00:51:27
合計ジャッジ時間 7,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,332 KB
testcase_01 AC 46 ms
50,060 KB
testcase_02 AC 179 ms
62,600 KB
testcase_03 AC 48 ms
50,072 KB
testcase_04 AC 196 ms
60,504 KB
testcase_05 AC 198 ms
60,532 KB
testcase_06 AC 190 ms
62,636 KB
testcase_07 AC 98 ms
54,124 KB
testcase_08 AC 175 ms
61,296 KB
testcase_09 AC 73 ms
51,408 KB
testcase_10 AC 121 ms
55,416 KB
testcase_11 AC 95 ms
53,716 KB
testcase_12 AC 104 ms
54,548 KB
testcase_13 AC 98 ms
53,644 KB
testcase_14 AC 84 ms
51,424 KB
testcase_15 AC 103 ms
53,768 KB
testcase_16 AC 107 ms
54,976 KB
testcase_17 AC 48 ms
50,196 KB
testcase_18 AC 49 ms
50,472 KB
testcase_19 AC 48 ms
50,416 KB
testcase_20 AC 50 ms
50,380 KB
testcase_21 AC 50 ms
50,340 KB
testcase_22 AC 158 ms
58,580 KB
testcase_23 AC 118 ms
54,664 KB
testcase_24 AC 87 ms
51,464 KB
testcase_25 AC 165 ms
58,272 KB
testcase_26 AC 102 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 && s > 0; i--) {
            if (s < i) {
                continue;
            }
            ans.addFirst(i);
            s -= i;
        }
        int size = ans.size();
        System.out.println(size);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < size; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(ans.poll());
        }
        System.out.println(sb);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0