結果

問題 No.290 1010
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 11:23:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 12,809 ms
コンパイル使用メモリ 447,840 KB
実行使用メモリ 75,980 KB
最終ジャッジ日時 2024-11-20 11:06:05
合計ジャッジ時間 23,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
56,852 KB
testcase_01 AC 325 ms
56,856 KB
testcase_02 AC 320 ms
56,940 KB
testcase_03 AC 317 ms
56,884 KB
testcase_04 AC 324 ms
57,020 KB
testcase_05 AC 323 ms
56,924 KB
testcase_06 AC 330 ms
56,740 KB
testcase_07 AC 324 ms
56,872 KB
testcase_08 AC 326 ms
56,948 KB
testcase_09 AC 319 ms
56,768 KB
testcase_10 AC 323 ms
56,848 KB
testcase_11 AC 323 ms
56,896 KB
testcase_12 AC 319 ms
56,948 KB
testcase_13 AC 326 ms
56,872 KB
testcase_14 AC 326 ms
56,812 KB
testcase_15 AC 326 ms
56,744 KB
testcase_16 AC 314 ms
56,776 KB
testcase_17 AC 319 ms
56,748 KB
testcase_18 AC 316 ms
57,004 KB
testcase_19 AC 319 ms
56,972 KB
testcase_20 AC 520 ms
75,980 KB
testcase_21 AC 562 ms
75,792 KB
testcase_22 AC 558 ms
75,664 KB
testcase_23 AC 520 ms
75,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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() }
  when { 
    n > 3 -> println("YES")
    else -> { 
      (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