結果

問題 No.290 1010
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 11:12:53
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 523 bytes
コンパイル時間 14,872 ms
コンパイル使用メモリ 438,520 KB
実行使用メモリ 164,336 KB
最終ジャッジ日時 2024-11-20 11:03:11
合計ジャッジ時間 46,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
60,160 KB
testcase_01 AC 330 ms
94,876 KB
testcase_02 AC 332 ms
64,012 KB
testcase_03 AC 332 ms
60,124 KB
testcase_04 AC 328 ms
60,348 KB
testcase_05 AC 332 ms
94,924 KB
testcase_06 AC 332 ms
60,416 KB
testcase_07 AC 329 ms
60,372 KB
testcase_08 AC 337 ms
63,788 KB
testcase_09 AC 331 ms
164,336 KB
testcase_10 AC 328 ms
60,156 KB
testcase_11 AC 331 ms
94,720 KB
testcase_12 AC 332 ms
56,788 KB
testcase_13 AC 330 ms
56,764 KB
testcase_14 AC 332 ms
57,068 KB
testcase_15 AC 328 ms
56,776 KB
testcase_16 AC 334 ms
56,924 KB
testcase_17 AC 331 ms
56,952 KB
testcase_18 AC 329 ms
56,772 KB
testcase_19 AC 331 ms
56,888 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

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

  (0..n-1).map { j ->
    (0..j).map { i ->
      val k = j + 1
      val l = 2*j + 1 -i
      when {
        l >= ms.size -> null
        k >= ms.size -> null
        ms.slice(i..j) == ms.slice(k..l) -> true
        else -> null
      }
    }
  }.flatMap { 
    it 
  }.any { 
    it == true
  }.let {
     when(it) {
       true -> "YES"
       else -> "NO"
     }.let { println(it) }
  }
}
0