結果

問題 No.582 キャンディー・ボックス3
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-28 09:46:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-05-02 01:35:15
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,988 KB
testcase_01 AC 116 ms
41,220 KB
testcase_02 AC 102 ms
39,956 KB
testcase_03 AC 114 ms
41,184 KB
testcase_04 AC 112 ms
41,256 KB
testcase_05 AC 109 ms
40,240 KB
testcase_06 AC 109 ms
41,268 KB
testcase_07 AC 114 ms
41,200 KB
testcase_08 AC 110 ms
41,112 KB
testcase_09 AC 116 ms
40,640 KB
testcase_10 AC 112 ms
41,060 KB
testcase_11 AC 112 ms
41,304 KB
testcase_12 AC 116 ms
41,360 KB
testcase_13 AC 119 ms
41,056 KB
testcase_14 AC 136 ms
41,620 KB
testcase_15 AC 124 ms
41,356 KB
testcase_16 AC 128 ms
41,424 KB
testcase_17 AC 135 ms
41,400 KB
testcase_18 AC 128 ms
41,156 KB
testcase_19 AC 125 ms
41,384 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