結果

問題 No.1876 Xor of Sum
ユーザー tentententen
提出日時 2022-04-06 14:52:33
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,370 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 49,068 KB
最終ジャッジ日時 2024-05-05 18:44:09
合計ジャッジ時間 9,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
46,312 KB
testcase_01 AC 57 ms
40,948 KB
testcase_02 AC 56 ms
40,780 KB
testcase_03 AC 871 ms
42,652 KB
testcase_04 TLE -
testcase_05 AC 112 ms
42,196 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
        boolean[] enable = new boolean[4000001];
        int size = 0;
        enable[0] = true;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            size += x;
            for (int j = size; j - x >= 0; j--) {
                enable[j] ^= enable[j - x];
            }
        }
        int ans = 0;
        for (int i = 0; i <= size; i++) {
            if (enable[i]) {
                ans ^= i;
            }
        }
        System.out.println(ans);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0