結果

問題 No.582 キャンディー・ボックス3
ユーザー GrenacheGrenache
提出日時 2017-10-27 23:55:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 3,996 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-05-02 01:34:14
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,420 KB
testcase_01 AC 146 ms
41,540 KB
testcase_02 AC 143 ms
40,976 KB
testcase_03 AC 140 ms
41,412 KB
testcase_04 AC 143 ms
41,004 KB
testcase_05 AC 140 ms
41,196 KB
testcase_06 AC 139 ms
41,132 KB
testcase_07 AC 141 ms
41,176 KB
testcase_08 AC 143 ms
41,400 KB
testcase_09 AC 144 ms
41,212 KB
testcase_10 AC 139 ms
41,100 KB
testcase_11 AC 144 ms
41,204 KB
testcase_12 AC 142 ms
40,988 KB
testcase_13 AC 154 ms
41,220 KB
testcase_14 AC 156 ms
41,540 KB
testcase_15 AC 155 ms
41,496 KB
testcase_16 AC 157 ms
41,548 KB
testcase_17 AC 156 ms
41,388 KB
testcase_18 AC 158 ms
41,620 KB
testcase_19 AC 156 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

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 cnt = 0;
		int sum = 0;
		int cnt1 = 0;
		int cnt2 = 0;
		for (int i = 0; i < n; i++) {
			c[i] = sc.nextInt();

			if (c[i] > 0) {
				cnt++;
			}
			sum += c[i];
			if (c[i] == 1) {
				cnt1++;
			}
			if (c[i] == 2) {
				cnt2++;
			}
		}

		if (cnt == 1) {
			if (sum == 1) {
				pr.println('A');
			} else {
				pr.println('B');
			}
		} else {
			if (cnt1 == cnt) {
				if (cnt % 2 == 0) {
					pr.println('B');
				} else {
					pr.println('A');
				}
			} else if (cnt2 == 1 && cnt2 + cnt1 == cnt) {
				if (cnt1 % 2 == 0) {
					pr.println('B');
				} else {
					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