結果

問題 No.582 キャンディー・ボックス3
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-28 09:46:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 41,920 KB
最終ジャッジ日時 2024-11-22 10:56:57
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,124 KB
testcase_01 AC 137 ms
41,224 KB
testcase_02 AC 135 ms
41,324 KB
testcase_03 AC 135 ms
41,380 KB
testcase_04 AC 138 ms
41,280 KB
testcase_05 AC 135 ms
41,420 KB
testcase_06 AC 137 ms
41,324 KB
testcase_07 AC 138 ms
41,540 KB
testcase_08 AC 136 ms
41,032 KB
testcase_09 AC 142 ms
41,232 KB
testcase_10 AC 148 ms
41,028 KB
testcase_11 AC 136 ms
41,288 KB
testcase_12 AC 136 ms
40,884 KB
testcase_13 AC 147 ms
41,272 KB
testcase_14 AC 147 ms
41,628 KB
testcase_15 AC 151 ms
41,848 KB
testcase_16 AC 153 ms
41,672 KB
testcase_17 AC 152 ms
41,776 KB
testcase_18 AC 153 ms
41,920 KB
testcase_19 AC 150 ms
41,256 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 == 1 && even == 1) {
			System.out.println("A");
		} else {
			System.out.println("B");
		}
 	}
}
0