結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | uafr_cs |
提出日時 | 2015-05-11 21:51:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,860 bytes |
コンパイル時間 | 2,206 ms |
コンパイル使用メモリ | 78,584 KB |
実行使用メモリ | 61,288 KB |
最終ジャッジ日時 | 2024-07-04 11:44:43 |
合計ジャッジ時間 | 10,584 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,356 KB |
testcase_01 | AC | 53 ms
50,072 KB |
testcase_02 | AC | 54 ms
50,056 KB |
testcase_03 | AC | 53 ms
50,392 KB |
testcase_04 | AC | 52 ms
50,444 KB |
testcase_05 | AC | 52 ms
50,472 KB |
testcase_06 | AC | 51 ms
50,412 KB |
testcase_07 | AC | 52 ms
50,296 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 52 ms
50,400 KB |
testcase_20 | AC | 215 ms
56,204 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 53 ms
50,268 KB |
testcase_25 | WA | - |
testcase_26 | AC | 52 ms
50,300 KB |
testcase_27 | AC | 53 ms
50,196 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Collections; import java.util.LinkedList; import java.util.PriorityQueue; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException{ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); long[] inputs = new long[N]; for(int i = 0; i < N; i++){ inputs[i] = sc.nextLong(); } final int SIZE = 64; long[] pivot = new long[SIZE + 1]; for(int i = 0; i < N; i++){ long value = inputs[i]; for(int bit = SIZE; bit >= 0; bit--){ if((value & (1 << bit)) == 0){ continue; } if(pivot[bit] == 0){ pivot[bit] = value; break; }else{ value ^= pivot[bit]; } } } int rank = SIZE + 1; for(int i = 0; i <= SIZE; i++){ if(pivot[i] == 0){ rank--; } } System.out.println(1l << rank); } public static class Scanner { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) throws IOException { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() throws IOException { while (!hasNext()) { tok = new StringTokenizer(br.readLine()); } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() throws IOException { getLine(); return tok.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public void close() throws IOException { br.close(); } } }