結果

問題 No.587 七対子
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 12:19:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 11,524 ms
コンパイル使用メモリ 434,992 KB
実行使用メモリ 52,168 KB
最終ジャッジ日時 2024-07-19 19:51:48
合計ジャッジ時間 23,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
52,028 KB
testcase_01 AC 283 ms
51,940 KB
testcase_02 AC 278 ms
52,064 KB
testcase_03 AC 289 ms
52,152 KB
testcase_04 AC 318 ms
52,028 KB
testcase_05 AC 288 ms
52,108 KB
testcase_06 AC 285 ms
52,072 KB
testcase_07 AC 285 ms
52,120 KB
testcase_08 AC 298 ms
52,096 KB
testcase_09 AC 296 ms
51,972 KB
testcase_10 AC 291 ms
52,060 KB
testcase_11 AC 297 ms
52,004 KB
testcase_12 AC 287 ms
52,036 KB
testcase_13 AC 282 ms
52,136 KB
testcase_14 AC 298 ms
52,132 KB
testcase_15 AC 284 ms
52,004 KB
testcase_16 AC 289 ms
52,056 KB
testcase_17 AC 296 ms
52,044 KB
testcase_18 AC 310 ms
52,008 KB
testcase_19 AC 308 ms
52,168 KB
testcase_20 AC 298 ms
51,980 KB
testcase_21 AC 292 ms
51,900 KB
testcase_22 AC 291 ms
51,984 KB
testcase_23 AC 290 ms
52,068 KB
testcase_24 AC 296 ms
52,148 KB
testcase_25 AC 288 ms
52,040 KB
testcase_26 AC 301 ms
52,064 KB
testcase_27 AC 292 ms
52,032 KB
testcase_28 AC 275 ms
52,064 KB
testcase_29 AC 274 ms
52,076 KB
testcase_30 AC 280 ms
51,976 KB
testcase_31 AC 276 ms
52,004 KB
testcase_32 AC 277 ms
52,052 KB
testcase_33 AC 287 ms
52,028 KB
testcase_34 AC 277 ms
52,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val cs = readLine()!!.toList().map { it.toString() }

  val char_freq = mutableMapOf<String, Int>()
  cs.map { c ->
    if( char_freq.get(c) == null )
      char_freq[c] = 0
    char_freq[c] = char_freq[c]!! + 1
  }
  val size1 = char_freq.toList().filter { it.second == 2 }.size
  val one = char_freq.toList().filter { it.second == 1 }

  when {
    one.size == 1 && size1 == 6 -> { println(one[0].first) }
    else -> { println("Impossible") }
  }
}
0