結果

問題 No.582 キャンディー・ボックス3
ユーザー 37zigen37zigen
提出日時 2020-03-19 02:21:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-12-14 02:55:31
合計ジャッジ時間 5,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,264 KB
testcase_01 AC 130 ms
54,032 KB
testcase_02 AC 129 ms
54,164 KB
testcase_03 AC 116 ms
53,028 KB
testcase_04 AC 129 ms
54,072 KB
testcase_05 AC 127 ms
54,132 KB
testcase_06 AC 130 ms
53,864 KB
testcase_07 AC 116 ms
52,936 KB
testcase_08 AC 125 ms
53,976 KB
testcase_09 AC 126 ms
54,124 KB
testcase_10 AC 127 ms
54,020 KB
testcase_11 AC 125 ms
53,912 KB
testcase_12 AC 125 ms
54,096 KB
testcase_13 AC 133 ms
54,668 KB
testcase_14 AC 132 ms
54,380 KB
testcase_15 AC 139 ms
53,884 KB
testcase_16 AC 138 ms
54,040 KB
testcase_17 AC 132 ms
54,244 KB
testcase_18 AC 137 ms
53,776 KB
testcase_19 AC 134 ms
54,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		int[] C=new int[n];
		int c1=0,c2=0,c=0;
		for(int i=0;i<n;++i) {
			C[i]=sc.nextInt();
			if(C[i]==1)++c1;
			else if(C[i]==2)++c2;
			else c+=C[i];
		}
		if(((c+c2)==0&&c1%2==1)||(c==0&&c2==1&&(c1+2*c2)%2==1)) {
			System.out.println("A");
		}else{
			System.out.println("B");
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0