結果

問題 No.582 キャンディー・ボックス3
ユーザー 37zigen37zigen
提出日時 2020-03-19 02:21:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-05-08 02:59:45
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,172 KB
testcase_01 AC 111 ms
40,084 KB
testcase_02 AC 121 ms
41,436 KB
testcase_03 AC 122 ms
40,836 KB
testcase_04 AC 121 ms
41,392 KB
testcase_05 AC 112 ms
39,956 KB
testcase_06 AC 118 ms
41,204 KB
testcase_07 AC 127 ms
41,252 KB
testcase_08 AC 112 ms
39,872 KB
testcase_09 AC 122 ms
40,924 KB
testcase_10 AC 115 ms
40,360 KB
testcase_11 AC 112 ms
40,180 KB
testcase_12 AC 125 ms
41,252 KB
testcase_13 AC 134 ms
41,552 KB
testcase_14 AC 128 ms
41,264 KB
testcase_15 AC 133 ms
41,368 KB
testcase_16 AC 137 ms
41,532 KB
testcase_17 AC 134 ms
41,436 KB
testcase_18 AC 138 ms
41,396 KB
testcase_19 AC 139 ms
41,552 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