結果

問題 No.582 キャンディー・ボックス3
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 21:50:10
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 12,127 ms
コンパイル使用メモリ 423,600 KB
実行使用メモリ 57,104 KB
最終ジャッジ日時 2024-11-20 14:09:46
合計ジャッジ時間 19,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
56,940 KB
testcase_01 AC 316 ms
56,872 KB
testcase_02 AC 313 ms
56,848 KB
testcase_03 AC 319 ms
56,928 KB
testcase_04 AC 324 ms
56,880 KB
testcase_05 AC 324 ms
56,868 KB
testcase_06 WA -
testcase_07 AC 320 ms
56,984 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 323 ms
56,948 KB
testcase_12 AC 314 ms
56,768 KB
testcase_13 AC 322 ms
56,944 KB
testcase_14 AC 321 ms
56,936 KB
testcase_15 AC 326 ms
57,024 KB
testcase_16 WA -
testcase_17 AC 335 ms
57,104 KB
testcase_18 AC 340 ms
57,020 KB
testcase_19 AC 336 ms
57,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  readLine()

  val es = readLine()!!.split(" ").map { it.toInt() }
  val all_size = es.size
  val one_size = es.filter { it == 1 }.size
  val two_size = es.filter { it == 2 }.size

  when {
    all_size == one_size + two_size && one_size % 2 == 1 && two_size == 1 -> "A"
    else -> "B"
  }.let { println(it) }
}
0