結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | tetsu |
提出日時 | 2017-10-17 17:18:27 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,506 bytes |
コンパイル時間 | 2,750 ms |
コンパイル使用メモリ | 78,072 KB |
実行使用メモリ | 241,012 KB |
最終ジャッジ日時 | 2024-11-17 22:09:15 |
合計ジャッジ時間 | 11,111 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
40,440 KB |
testcase_01 | AC | 112 ms
41,608 KB |
testcase_02 | AC | 129 ms
41,836 KB |
testcase_03 | AC | 126 ms
41,732 KB |
testcase_04 | AC | 113 ms
41,320 KB |
testcase_05 | AC | 132 ms
41,948 KB |
testcase_06 | AC | 125 ms
41,672 KB |
testcase_07 | WA | - |
testcase_08 | AC | 771 ms
229,276 KB |
testcase_09 | AC | 582 ms
141,380 KB |
testcase_10 | AC | 643 ms
190,716 KB |
testcase_11 | AC | 780 ms
222,920 KB |
testcase_12 | WA | - |
testcase_13 | AC | 106 ms
41,384 KB |
testcase_14 | AC | 588 ms
222,920 KB |
testcase_15 | AC | 801 ms
222,680 KB |
testcase_16 | AC | 128 ms
41,640 KB |
testcase_17 | AC | 322 ms
77,956 KB |
testcase_18 | WA | - |
testcase_19 | AC | 249 ms
59,340 KB |
ソースコード
package yukicoder; import java.util.*; public class P183 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] A = new int[N]; for(int i=0; i<N; i++) { A[i] = sc.nextInt(); } boolean[][] ans = new boolean[N+1][32768+1]; for(int i=0; i<N+1; i++) { Arrays.fill(ans[i], false); } ans[0][0] = true; for(int i=0; i<N; i++) { for(int j=0; j<32768+1; j++) { if(ans[i][j]) { ans[i+1][j] = ans[i][j]; ans[i+1][j^A[i]] = true; } } } int cnt =0; for(int i=0; i<16384+1; i++) { if(ans[N][i]) cnt++; } System.out.println(cnt); } // print static void print(String s) { System.out.println(s); } // union find lib // usage: // 最初にinitを呼ぶ // root: 直接は呼ばないで // unite: まとめる // same: グループ判定 static void init(int par[], int N) { for(int i=0; i<N; i++) { par[i] = i; } } static int root(int x, int [] par) { if(par[x] == x) { return x; } else { return (par[x] = root(par[x], par)); } } static boolean same(int x, int y, int[] par) { return root(x, par) == root(y, par); } static void unite(int x, int y, int[] par) { x = root(x, par); y = root(y, par); if(x == y) return; par[x] = y; } // end union find lib // number lib static int max(int...ls) { int ans = Integer.MIN_VALUE; for(int i=0; i<ls.length; i++) { ans = Math.max(ans, ls[i]); } return ans; } static int min(int...ls) { int ans = Integer.MAX_VALUE; for(int i=0; i<ls.length; i++) { ans = Math.min(ans, ls[i]); } return ans; } static long lcm(long a, long b) { return a*(b/gcd(a, b)); } static long gcd(long a, long b) { long ta = Math.max(a, b); long tb = Math.min(a, b); long tmp; while((tmp = ta%tb) != 0) { ta = tb; tb = tmp; } return tb; } static long modcomb(long n, long k, long mod) { if(k==1) { return n; } long ans = 1; for(long i=n; i>=n-k+1; i--) { ans = (ans * i)%mod; } for(long i=k; 0<i; i--) { ans = (ans * modpow(i, mod-2, mod)) % mod; } return ans; } static long modpow(long a, long b, long mod) { if(b==0) return 1; if(b%2==0) { long d = modpow(a, b/2, mod); return (d*d)%mod; } else { return (a*modpow(a, b-1, mod))%mod; } } static int disit(long a, long d) { int count = 0; while(a!=0) { a = a/d; count++; } return count; } // end number lib }