結果

問題 No.672 最長AB列
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-07 01:37:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 730 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 12,151 ms
コンパイル使用メモリ 435,292 KB
実行使用メモリ 102,744 KB
最終ジャッジ日時 2024-11-20 16:14:16
合計ジャッジ時間 22,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
56,988 KB
testcase_01 AC 321 ms
57,016 KB
testcase_02 AC 322 ms
56,960 KB
testcase_03 AC 316 ms
57,084 KB
testcase_04 AC 320 ms
57,080 KB
testcase_05 AC 321 ms
57,160 KB
testcase_06 AC 321 ms
56,996 KB
testcase_07 AC 320 ms
57,048 KB
testcase_08 AC 323 ms
57,144 KB
testcase_09 AC 652 ms
99,696 KB
testcase_10 AC 705 ms
100,404 KB
testcase_11 AC 730 ms
102,744 KB
testcase_12 AC 581 ms
77,084 KB
testcase_13 AC 563 ms
78,816 KB
testcase_14 AC 563 ms
79,056 KB
testcase_15 AC 606 ms
77,700 KB
testcase_16 AC 621 ms
74,832 KB
testcase_17 AC 677 ms
100,300 KB
testcase_18 AC 554 ms
71,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:22:10: warning: unnecessary safe call on a non-null receiver of type Int
  }.max()?.let {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val inputs = readLine()!!.toList().map {
    when {
      it == 'A' -> 1
      else -> -1
    }
  }
  // scanner
  val m = mutableMapOf<Int, MutableList<Int>>( 0 to mutableListOf(-1, -1, -1) )
  var s = 0
  inputs.mapIndexed { index, it ->
    s += it
    if( m.get(s) == null ) {
      m[s] = mutableListOf(index, -1, -1)
    } else {
      m[s]!![1] = index
      m[s]!![2] = index - m[s]!![0]
    }
  }
  m.toList().map {
    it.second[2]
  }.max()?.let {
    if( it < 0 ) 0
    else it
  }.run(::println)
  //println(m)
}
0