結果

問題 No.582 キャンディー・ボックス3
ユーザー uafr_csuafr_cs
提出日時 2017-11-09 15:07:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 56,496 KB
最終ジャッジ日時 2024-11-24 07:27:01
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 124 ms
41,400 KB
testcase_04 AC 127 ms
40,984 KB
testcase_05 AC 127 ms
41,412 KB
testcase_06 AC 127 ms
41,016 KB
testcase_07 WA -
testcase_08 AC 125 ms
41,304 KB
testcase_09 AC 126 ms
41,348 KB
testcase_10 AC 124 ms
41,104 KB
testcase_11 AC 125 ms
41,004 KB
testcase_12 AC 124 ms
41,660 KB
testcase_13 AC 137 ms
41,700 KB
testcase_14 AC 135 ms
41,384 KB
testcase_15 AC 138 ms
40,988 KB
testcase_16 AC 142 ms
41,524 KB
testcase_17 WA -
testcase_18 AC 137 ms
41,660 KB
testcase_19 AC 141 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int win = 0;
		for(int i = 0; i < N; i++){
			final int c = sc.nextInt();
			
			if(c == 1){
				win++;
			}
		}
		
		System.out.println(win % 2 == 1 ? "A" : "B");
	}
}
0