結果

問題 No.1017 Reiwa Sequence
ユーザー tentententen
提出日時 2022-08-30 15:36:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 2,430 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 78,644 KB
実行使用メモリ 117,344 KB
最終ジャッジ日時 2024-11-07 10:11:13
合計ジャッジ時間 47,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,908 KB
testcase_01 AC 55 ms
36,964 KB
testcase_02 AC 53 ms
37,032 KB
testcase_03 AC 53 ms
37,112 KB
testcase_04 AC 53 ms
36,940 KB
testcase_05 AC 53 ms
37,068 KB
testcase_06 AC 51 ms
36,904 KB
testcase_07 AC 51 ms
37,348 KB
testcase_08 AC 52 ms
37,048 KB
testcase_09 AC 58 ms
37,308 KB
testcase_10 AC 64 ms
39,992 KB
testcase_11 AC 54 ms
37,352 KB
testcase_12 AC 95 ms
56,124 KB
testcase_13 AC 73 ms
54,488 KB
testcase_14 AC 54 ms
37,384 KB
testcase_15 AC 58 ms
37,052 KB
testcase_16 AC 54 ms
36,924 KB
testcase_17 AC 88 ms
39,844 KB
testcase_18 AC 54 ms
37,068 KB
testcase_19 AC 442 ms
81,664 KB
testcase_20 AC 459 ms
81,952 KB
testcase_21 AC 449 ms
81,648 KB
testcase_22 AC 444 ms
81,912 KB
testcase_23 AC 427 ms
81,828 KB
testcase_24 AC 451 ms
81,848 KB
testcase_25 AC 436 ms
81,764 KB
testcase_26 AC 396 ms
81,760 KB
testcase_27 AC 295 ms
68,692 KB
testcase_28 AC 437 ms
78,264 KB
testcase_29 AC 88 ms
41,660 KB
testcase_30 AC 97 ms
45,668 KB
testcase_31 AC 132 ms
49,864 KB
testcase_32 AC 268 ms
68,932 KB
testcase_33 AC 81 ms
40,432 KB
testcase_34 AC 298 ms
68,820 KB
testcase_35 AC 54 ms
38,956 KB
testcase_36 AC 54 ms
39,084 KB
testcase_37 AC 301 ms
68,956 KB
testcase_38 AC 54 ms
39,220 KB
testcase_39 AC 275 ms
68,788 KB
testcase_40 AC 642 ms
114,948 KB
testcase_41 AC 598 ms
114,836 KB
testcase_42 AC 635 ms
115,308 KB
testcase_43 AC 644 ms
117,308 KB
testcase_44 AC 171 ms
60,324 KB
testcase_45 AC 647 ms
117,344 KB
testcase_46 AC 601 ms
115,160 KB
testcase_47 AC 603 ms
114,904 KB
testcase_48 AC 194 ms
61,504 KB
testcase_49 AC 189 ms
61,444 KB
testcase_50 AC 204 ms
61,380 KB
testcase_51 AC 52 ms
36,912 KB
testcase_52 AC 396 ms
81,392 KB
testcase_53 AC 160 ms
51,776 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();
        int size = Math.min(22, n);
        int[] values = new int[size];
        for (int i = 0; i < size; i++) {
            values[i] = sc.nextInt();
        }
        int[] dp = new int[1 << size];
        HashMap<Integer, Integer> exist = new HashMap<>();
        for (int i = 1; i < (1 << size); i++) {
            for (int j = 0; j < size; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                dp[i] = dp[i ^ (1 << j)] + values[j];
                break;
            }
            if (exist.containsKey(dp[i])) {
                int x = exist.get(dp[i]);
                StringBuilder sb = new StringBuilder();
                for (int j = 0; j < size; j++) {
                    if (j > 0) {
                        sb.append(" ");
                    }
                    if ((x & (1 << j)) == 0 && (i & (1 << j)) != 0) {
                        sb.append(-values[j]);
                    } else if ((x & (1 << j)) != 0 && (i & (1 << j)) == 0) {
                        sb.append(values[j]);
                    } else {
                        sb.append("0");
                    }
                }
                for (int j = size; j < n; j++) {
                    sb.append(" 0");
                }
                System.out.println("Yes");
                System.out.println(sb);
                return;
            } else {
                exist.put(dp[i], i);
            }
        }
        System.out.println("No");
    }
}
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