結果
| 問題 | No.582 キャンディー・ボックス3 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-27 22:55:41 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 905 bytes |
| 記録 | |
| コンパイル時間 | 3,083 ms |
| コンパイル使用メモリ | 82,884 KB |
| 実行使用メモリ | 43,764 KB |
| 最終ジャッジ日時 | 2026-05-16 01:58:56 |
| 合計ジャッジ時間 | 5,327 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 WA * 4 |
ソースコード
import java.io.*;
import java.util.*;
public class Main_yukicoder582 {
private static Scanner sc;
private static Printer pr;
private static void solve() {
int n = sc.nextInt();
int[] c = new int[n];
int cnt = 0;
int max = 0;
for (int i = 0; i < n; i++) {
c[i] = sc.nextInt();
if (c[i] == 1) {
cnt++;
}
max = Math.max(max, c[i]);
}
if (n == 1) {
pr.println('B');
} else {
if (n == cnt && n % 2 == 1) {
pr.println('A');
} else if (n == cnt + 1 && max == 2 && cnt % 2 == 1) {
pr.println('A');
} else {
pr.println('B');
}
}
}
// ---------------------------------------------------
public static void main(String[] args) {
sc = new Scanner(System.in);
pr = new Printer(System.out);
solve();
pr.close();
sc.close();
}
private static class Printer extends PrintWriter {
Printer(PrintStream out) {
super(out);
}
}
}