結果

問題 No.548 国士無双
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-10 02:24:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 12,814 ms
コンパイル使用メモリ 440,828 KB
実行使用メモリ 60,676 KB
最終ジャッジ日時 2024-11-20 12:00:25
合計ジャッジ時間 22,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
59,552 KB
testcase_01 AC 342 ms
60,572 KB
testcase_02 AC 340 ms
60,400 KB
testcase_03 AC 344 ms
60,480 KB
testcase_04 AC 368 ms
60,456 KB
testcase_05 AC 367 ms
60,480 KB
testcase_06 AC 364 ms
60,536 KB
testcase_07 AC 352 ms
60,532 KB
testcase_08 AC 345 ms
60,436 KB
testcase_09 AC 347 ms
60,452 KB
testcase_10 AC 344 ms
60,456 KB
testcase_11 AC 345 ms
60,456 KB
testcase_12 AC 343 ms
60,480 KB
testcase_13 AC 339 ms
60,380 KB
testcase_14 AC 344 ms
60,484 KB
testcase_15 AC 353 ms
60,480 KB
testcase_16 AC 350 ms
60,456 KB
testcase_17 AC 350 ms
60,440 KB
testcase_18 AC 345 ms
60,376 KB
testcase_19 AC 356 ms
60,456 KB
testcase_20 AC 343 ms
60,676 KB
testcase_21 AC 352 ms
60,408 KB
testcase_22 AC 347 ms
60,472 KB
testcase_23 AC 346 ms
60,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val bs = readLine()!!
  val cs = "abcdefghijklm".map { x ->
    val mm = (bs + x.toString())
      .toList()
      .groupBy { 
        it
      }.map { 
        val (k, arr) = it
        Pair(k, arr.size)
      }.toMap()
    val res = "abcdefghijklm".map {
      mm[it]
    }.sortedBy { 
      it 
    }.let { 
      when { 
        it.joinToString("") == "1111111111112" -> x
        else -> null
      }
    }
    res
  }.filter {
    it != null
  }
  when {
    cs.size == 0 -> println("Impossible")
    else -> cs.map {
      println(it)
    }
  }
}
0