結果

問題 No.582 キャンディー・ボックス3
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 22:41:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2024-11-21 21:54:28
合計ジャッジ時間 5,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,236 KB
testcase_01 AC 116 ms
41,388 KB
testcase_02 AC 122 ms
41,008 KB
testcase_03 WA -
testcase_04 AC 121 ms
41,292 KB
testcase_05 AC 119 ms
41,536 KB
testcase_06 AC 110 ms
40,192 KB
testcase_07 AC 120 ms
41,464 KB
testcase_08 AC 118 ms
41,308 KB
testcase_09 WA -
testcase_10 AC 121 ms
41,236 KB
testcase_11 AC 119 ms
41,108 KB
testcase_12 AC 109 ms
39,980 KB
testcase_13 WA -
testcase_14 AC 133 ms
41,140 KB
testcase_15 AC 135 ms
41,812 KB
testcase_16 AC 134 ms
41,912 KB
testcase_17 AC 130 ms
41,280 KB
testcase_18 AC 132 ms
41,260 KB
testcase_19 AC 138 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int count = 0;
    int one = 0;
    int two = 0;
    for(int i = 0; i < n; i++) {
      int c = sc.nextInt();
      if(c > 2) count++;
      if(c == 1) one++;
      if(c == 2) two++;
    }
    String ans = "B";
    if((count == 0) && (two == 0) && (one % 2 == 1)) ans = "A"; 
    System.out.println(ans);
  }
}
0