結果

問題 No.1876 Xor of Sum
ユーザー tentententen
提出日時 2022-04-06 14:52:33
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,370 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 86,660 KB
最終ジャッジ日時 2024-11-27 18:52:53
合計ジャッジ時間 56,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
46,240 KB
testcase_01 AC 50 ms
84,396 KB
testcase_02 AC 50 ms
46,408 KB
testcase_03 AC 769 ms
86,660 KB
testcase_04 TLE -
testcase_05 AC 104 ms
86,324 KB
testcase_06 TLE -
testcase_07 AC 115 ms
86,104 KB
testcase_08 AC 102 ms
47,780 KB
testcase_09 AC 1,825 ms
86,484 KB
testcase_10 AC 555 ms
47,932 KB
testcase_11 TLE -
testcase_12 AC 749 ms
47,504 KB
testcase_13 AC 1,594 ms
86,012 KB
testcase_14 AC 1,116 ms
48,076 KB
testcase_15 AC 1,392 ms
86,412 KB
testcase_16 AC 88 ms
47,732 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 86 ms
86,248 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();
        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