結果

問題 No.582 キャンディー・ボックス3
ユーザー 37zigen37zigen
提出日時 2020-03-19 02:01:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-05-08 02:59:21
合計ジャッジ時間 6,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 135 ms
41,196 KB
testcase_04 AC 140 ms
41,156 KB
testcase_05 AC 138 ms
41,384 KB
testcase_06 AC 136 ms
41,216 KB
testcase_07 WA -
testcase_08 AC 135 ms
41,140 KB
testcase_09 AC 138 ms
41,272 KB
testcase_10 AC 139 ms
41,208 KB
testcase_11 AC 137 ms
41,268 KB
testcase_12 AC 141 ms
41,064 KB
testcase_13 AC 149 ms
41,424 KB
testcase_14 AC 148 ms
41,272 KB
testcase_15 AC 156 ms
41,696 KB
testcase_16 AC 153 ms
41,540 KB
testcase_17 WA -
testcase_18 AC 165 ms
41,460 KB
testcase_19 AC 160 ms
41,484 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);
		// n=1の場合
		// 1個 先手必勝
		// 2個以上 後手必勝 ( mod2で残り個数を0にできるため )
		
		// 1個の数が偶数  後手必勝
		// 1個の数が奇数  先手必勝
		
		int n=sc.nextInt();
		int[] C=new int[n];
		int c1=0;
		for(int i=0;i<n;++i) {
			C[i]=sc.nextInt();
			if(C[i]==1)++c1;
		}
		System.out.println(c1%2==1?"A":"B");
	}

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