結果
問題 | No.582 キャンディー・ボックス3 |
ユーザー |
|
提出日時 | 2017-10-27 23:55:58 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 148 ms / 2,000 ms |
コード長 | 1,170 bytes |
コンパイル時間 | 3,453 ms |
コンパイル使用メモリ | 77,904 KB |
実行使用メモリ | 41,568 KB |
最終ジャッジ日時 | 2024-11-22 10:55:31 |
合計ジャッジ時間 | 7,019 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
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 sum = 0; int cnt1 = 0; int cnt2 = 0; for (int i = 0; i < n; i++) { c[i] = sc.nextInt(); if (c[i] > 0) { cnt++; } sum += c[i]; if (c[i] == 1) { cnt1++; } if (c[i] == 2) { cnt2++; } } if (cnt == 1) { if (sum == 1) { pr.println('A'); } else { pr.println('B'); } } else { if (cnt1 == cnt) { if (cnt % 2 == 0) { pr.println('B'); } else { pr.println('A'); } } else if (cnt2 == 1 && cnt2 + cnt1 == cnt) { if (cnt1 % 2 == 0) { pr.println('B'); } else { 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); } } }