結果

問題 No.607 開通777年記念
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-16 15:33:00
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 767 bytes
コンパイル時間 13,726 ms
コンパイル使用メモリ 444,232 KB
実行使用メモリ 168,276 KB
最終ジャッジ日時 2024-11-20 13:52:55
合計ジャッジ時間 23,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
55,340 KB
testcase_01 AC 296 ms
87,752 KB
testcase_02 AC 296 ms
57,232 KB
testcase_03 AC 297 ms
168,276 KB
testcase_04 AC 297 ms
55,236 KB
testcase_05 AC 291 ms
87,664 KB
testcase_06 AC 294 ms
57,120 KB
testcase_07 AC 775 ms
89,096 KB
testcase_08 AC 312 ms
52,220 KB
testcase_09 AC 612 ms
85,432 KB
testcase_10 AC 448 ms
60,212 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) { 
         ^
Main.kt:19:9: warning: name shadowed: xs
    val xs = xsn!! 
        ^

ソースコード

diff #

fun main(args: Array<String>) { 
  val (ws, n) = readLine()!!.split(" ").map { it.toInt() }
  val xs = (1..ws).map { 0 }.toMutableList()
  
  var check = false
  (1..n).map { 
    val arr = readLine()!!.split(" ").map { it.toInt() }
      
    when  { 
      arr.sum() != 0 -> { arr.mapIndexed { index, x ->
            xs[index] += x
          }
          xs.toList()
        }
      else -> null
    }
  }.filter { it != null }
  .map { xsn ->
    val xs = xsn!! 
    if( check == false ) {
      scan@for( s in (0..xs.size-1) ) { 
        for( e in (s..xs.size-1) ) { 
          if( xs.slice(s..e).sum() == 777) {
            check = true
            continue@scan
          }
        }
      }
    }
  }

  if(check) 
    println("YES")
  else
    println("NO")
}
0