結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,068 KB
testcase_01 AC 123 ms
54,000 KB
testcase_02 AC 125 ms
53,816 KB
testcase_03 WA -
testcase_04 AC 125 ms
53,944 KB
testcase_05 AC 127 ms
53,848 KB
testcase_06 AC 126 ms
53,820 KB
testcase_07 AC 128 ms
54,236 KB
testcase_08 AC 125 ms
53,928 KB
testcase_09 WA -
testcase_10 AC 125 ms
54,056 KB
testcase_11 AC 123 ms
54,092 KB
testcase_12 AC 129 ms
53,960 KB
testcase_13 WA -
testcase_14 AC 133 ms
53,740 KB
testcase_15 WA -
testcase_16 AC 138 ms
53,832 KB
testcase_17 AC 145 ms
54,076 KB
testcase_18 AC 139 ms
54,216 KB
testcase_19 AC 142 ms
54,036 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] == 2) 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