結果
問題 |
No.582 キャンディー・ボックス3
|
ユーザー |
|
提出日時 | 2017-10-27 23:01:20 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 3,826 ms |
コンパイル使用メモリ | 75,256 KB |
実行使用メモリ | 54,356 KB |
最終ジャッジ日時 | 2024-11-21 22:40:32 |
合計ジャッジ時間 | 6,956 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 6 |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder582 { private static Scanner sc; private static Printer pr; private static void solve() { int n = sc.nextInt(); int[] c = new int[n]; int xor = 0; for (int i = 0; i < n; i++) { c[i] = sc.nextInt(); xor ^= c[i]; } if (n == 1) { pr.println('B'); } else { xor &= 0x3; if (xor == 0) { pr.println('B'); } else if (xor == 1) { pr.println('A'); } else if (xor == 2) { pr.println('B'); } else { pr.println('A'); } } } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(System.in); pr = new Printer(System.out); solve(); pr.close(); sc.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }