結果

問題 No.1876 Xor of Sum
ユーザー tentententen
提出日時 2024-08-08 18:23:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,577 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 63,924 KB
最終ジャッジ日時 2024-08-08 18:24:15
合計ジャッジ時間 32,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
57,468 KB
testcase_01 AC 52 ms
50,376 KB
testcase_02 AC 53 ms
49,908 KB
testcase_03 AC 485 ms
51,952 KB
testcase_04 AC 1,263 ms
53,904 KB
testcase_05 AC 99 ms
51,760 KB
testcase_06 TLE -
testcase_07 AC 107 ms
51,712 KB
testcase_08 AC 100 ms
51,944 KB
testcase_09 AC 1,118 ms
54,120 KB
testcase_10 AC 390 ms
51,980 KB
testcase_11 AC 1,739 ms
53,832 KB
testcase_12 AC 512 ms
51,920 KB
testcase_13 AC 978 ms
53,948 KB
testcase_14 AC 704 ms
54,008 KB
testcase_15 AC 845 ms
54,128 KB
testcase_16 AC 95 ms
51,940 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
        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