結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
41,300 KB
testcase_02 WA -
testcase_03 AC 116 ms
40,796 KB
testcase_04 AC 123 ms
41,444 KB
testcase_05 AC 122 ms
41,544 KB
testcase_06 AC 124 ms
41,344 KB
testcase_07 AC 119 ms
41,148 KB
testcase_08 AC 119 ms
41,192 KB
testcase_09 AC 119 ms
40,884 KB
testcase_10 AC 120 ms
40,884 KB
testcase_11 WA -
testcase_12 AC 119 ms
40,828 KB
testcase_13 AC 130 ms
41,500 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
41,828 KB
testcase_17 AC 132 ms
41,436 KB
testcase_18 AC 136 ms
41,224 KB
testcase_19 AC 138 ms
41,472 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;
    for(int i = 0; i < n; i++) {
      int c = sc.nextInt();
      if(c > 2) count++;
    }
    String ans = "A";
    if(count > 0) ans = "B";
    System.out.println(ans);
  }
}
0