結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,064 KB
testcase_01 AC 127 ms
41,004 KB
testcase_02 AC 116 ms
40,812 KB
testcase_03 AC 113 ms
39,964 KB
testcase_04 AC 119 ms
40,872 KB
testcase_05 AC 118 ms
40,704 KB
testcase_06 AC 127 ms
41,332 KB
testcase_07 AC 128 ms
41,424 KB
testcase_08 AC 123 ms
41,140 KB
testcase_09 AC 123 ms
41,328 KB
testcase_10 AC 116 ms
39,864 KB
testcase_11 AC 126 ms
41,228 KB
testcase_12 AC 126 ms
41,484 KB
testcase_13 AC 126 ms
41,236 KB
testcase_14 AC 136 ms
41,740 KB
testcase_15 AC 136 ms
41,968 KB
testcase_16 AC 138 ms
41,600 KB
testcase_17 AC 128 ms
41,164 KB
testcase_18 AC 141 ms
41,704 KB
testcase_19 AC 136 ms
41,188 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(c2<=1&&c==0&&(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