結果

問題 No.582 キャンディー・ボックス3
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-28 09:42:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-11-22 02:55:18
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 127 ms
53,800 KB
testcase_02 AC 115 ms
52,944 KB
testcase_03 AC 126 ms
54,092 KB
testcase_04 AC 128 ms
54,140 KB
testcase_05 AC 114 ms
54,076 KB
testcase_06 AC 126 ms
54,052 KB
testcase_07 AC 119 ms
53,088 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 116 ms
52,696 KB
testcase_11 AC 127 ms
54,220 KB
testcase_12 AC 128 ms
53,828 KB
testcase_13 AC 132 ms
53,836 KB
testcase_14 AC 138 ms
53,924 KB
testcase_15 AC 140 ms
53,984 KB
testcase_16 WA -
testcase_17 AC 141 ms
54,260 KB
testcase_18 AC 144 ms
53,872 KB
testcase_19 AC 140 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] c = new int[n];
		for(int i = 0 ; i < n ; i++) {
			c[i] = sc.nextInt();
		}
		int odd = 0, even = 0;
		for(int i = 0 ; i < n ; i++) {
			if(c[i] >= 3) {
				System.out.println("B");
				return;
			}
			if(c[i] == 0) even++;
			else if(c[i] == 1) odd++;
		}
		if(odd % 2 == 1 && even == 0 || odd % 2 == 0 && even == 1) {
			System.out.println("A");
		} else {
			System.out.println("B");
		}
 	}
}
0