結果
問題 |
No.1876 Xor of Sum
|
ユーザー |
![]() |
提出日時 | 2024-08-08 18:23:42 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 TLE * 8 -- * 6 |
ソースコード
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(); } } }