結果

問題 No.1876 Xor of Sum
ユーザー tenten
提出日時 2024-08-08 18:23:42
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
TLE  
実行時間 -
コード長 1,577 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,811 ms
コンパイル使用メモリ 83,284 KB
実行使用メモリ 53,084 KB
最終ジャッジ日時 2026-04-03 20:17:49
合計ジャッジ時間 24,781 ms
ジャッジサーバーID
(参考情報)
judge5_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17 TLE * 2 -- * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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();
        boolean[] exists = new boolean[n * 2000 + 1];
        exists[0] = true;
        int max = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            for (int i = max; i >= 0; i--) {
                exists[i + x] ^= exists[i];
            }
            max += x;
        }
        int ans = 0;
        for (int i = 1; i <= max; i++) {
            if (exists[i]) {
                ans ^= i;
            }
        }
        System.out.println(ans);
    }
}
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