結果

問題 No.582 キャンディー・ボックス3
ユーザー GrenacheGrenache
提出日時 2017-10-27 22:43:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 3,181 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-21 22:02:54
合計ジャッジ時間 6,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 121 ms
46,576 KB
testcase_04 AC 134 ms
46,720 KB
testcase_05 AC 132 ms
46,260 KB
testcase_06 WA -
testcase_07 AC 132 ms
46,144 KB
testcase_08 AC 128 ms
46,468 KB
testcase_09 AC 133 ms
46,200 KB
testcase_10 AC 129 ms
46,632 KB
testcase_11 AC 129 ms
46,680 KB
testcase_12 WA -
testcase_13 AC 137 ms
46,516 KB
testcase_14 AC 133 ms
46,324 KB
testcase_15 AC 142 ms
46,600 KB
testcase_16 AC 143 ms
46,356 KB
testcase_17 AC 146 ms
46,520 KB
testcase_18 AC 147 ms
46,904 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 {
			if ((xor & 0x1) != 0) {
				pr.println('A');
			} else {
				pr.println('B');
			}
		}
	}

	// ---------------------------------------------------
	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);
		}
	}
}
0