結果

問題 No.672 最長AB列
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-07 01:23:36
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 877 bytes
コンパイル時間 13,638 ms
コンパイル使用メモリ 445,424 KB
実行使用メモリ 157,416 KB
最終ジャッジ日時 2024-11-20 16:13:14
合計ジャッジ時間 32,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
55,256 KB
testcase_01 AC 328 ms
88,196 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 335 ms
55,560 KB
testcase_05 AC 328 ms
88,188 KB
testcase_06 AC 336 ms
57,204 KB
testcase_07 AC 334 ms
144,636 KB
testcase_08 AC 332 ms
55,468 KB
testcase_09 RE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 930 ms
69,280 KB
testcase_13 AC 769 ms
71,816 KB
testcase_14 AC 763 ms
72,620 KB
testcase_15 AC 909 ms
70,384 KB
testcase_16 AC 954 ms
68,180 KB
testcase_17 TLE -
testcase_18 AC 593 ms
157,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:22:10: warning: variable 'k' is never used
    val (k,v) = it
         ^
Main.kt:25:12: warning: variable 'v' is never used
    val (k,v) = it
           ^
Main.kt:46:12: warning: unnecessary safe call on a non-null receiver of type Int
  ans.max()?.let(::println) ?: println(0)
           ^
Main.kt:46:29: warning: elvis operator (?:) always returns the left operand of non-nullable type Unit
  ans.max()?.let(::println) ?: println(0)
                            ^

ソースコード

diff #

fun main(args:Array<String>) {
  val inputs = readLine()!!.toList().map {
    when {
      it == 'A' -> 1
      else -> -1
    }
  }
  // scanner
  var s = 0
  val tri = mutableListOf<Int>(0)
  val m = mutableMapOf<Int, Int>( 0 to 1 )
  inputs.map {
    s += it
    if( m.get(s) == null ) {
      m[s] = 1
    } else {
      m[s] = m[s]!! + 1
    }
    tri.add(s)
  }
  val pats = m.toList().filter {
    val (k,v) = it
    v >= 2
  }.map {
    val (k,v) = it
    k
  }
  val ans = mutableListOf<Int>()
  pats.map { pat ->
    var start = -1
    for( _start in (0..tri.size-1) ) {
      if( tri[_start] == pat ) {
        start = _start
        break
      }
    }
    var end = -1
    for( _end in (tri.size-1 downTo 0) ) {
      if( tri[_end] == pat ) {
        end = _end
        break
      }
    }
    ans.add( end - start )
  }
  ans.max()?.let(::println) ?: println(0)
}
0