結果

問題 No.548 国士無双
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-06 01:02:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 12,669 ms
コンパイル使用メモリ 442,540 KB
実行使用メモリ 60,216 KB
最終ジャッジ日時 2024-11-20 11:43:11
合計ジャッジ時間 22,154 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
60,008 KB
testcase_01 AC 325 ms
60,216 KB
testcase_02 AC 331 ms
60,136 KB
testcase_03 AC 331 ms
60,164 KB
testcase_04 AC 333 ms
60,084 KB
testcase_05 AC 332 ms
60,076 KB
testcase_06 AC 332 ms
59,956 KB
testcase_07 AC 330 ms
59,996 KB
testcase_08 AC 331 ms
60,140 KB
testcase_09 AC 332 ms
59,976 KB
testcase_10 AC 334 ms
59,932 KB
testcase_11 AC 333 ms
59,988 KB
testcase_12 AC 329 ms
60,116 KB
testcase_13 AC 328 ms
59,912 KB
testcase_14 AC 330 ms
59,972 KB
testcase_15 AC 330 ms
60,084 KB
testcase_16 AC 331 ms
60,104 KB
testcase_17 AC 329 ms
60,068 KB
testcase_18 AC 333 ms
59,904 KB
testcase_19 AC 328 ms
59,904 KB
testcase_20 AC 327 ms
60,076 KB
testcase_21 AC 334 ms
60,092 KB
testcase_22 AC 333 ms
59,900 KB
testcase_23 AC 331 ms
59,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:7:12: warning: variable 'k' is never used
      val (k, arr) = it
           ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val a = readLine()!!
  "abcdefghijklm".map { x ->
    (a + x.toString()).groupBy {
      it
    }.map { 
      val (k, arr) = it
      arr.size
    }.sortedBy { it }.let {
      it == listOf(1,1,1,1,1,1,1,1,1,1,1,1,2)
    }.let { 
      Pair(x, it)
    }
  }.filter {
    it.second == true
  }.let { 
    when { 
      it.size >= 1 -> it.map { println(it.first)  } 
      else -> println("Impossible")
    }
  }
}
0