結果

問題 No.607 開通777年記念
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 14:06:33
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 629 bytes
コンパイル時間 12,114 ms
コンパイル使用メモリ 442,268 KB
実行使用メモリ 155,944 KB
最終ジャッジ日時 2024-11-20 14:08:42
合計ジャッジ時間 25,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
60,688 KB
testcase_01 AC 304 ms
95,128 KB
testcase_02 AC 301 ms
63,832 KB
testcase_03 AC 308 ms
155,944 KB
testcase_04 AC 299 ms
60,436 KB
testcase_05 AC 307 ms
95,080 KB
testcase_06 AC 304 ms
63,904 KB
testcase_07 TLE -
testcase_08 AC 322 ms
60,580 KB
testcase_09 AC 648 ms
128,284 KB
testcase_10 AC 464 ms
70,836 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
  val (ws, n) = readLine()!!.split(" ").map { it.toInt() }
  val xs = (1..ws).map { 0 }.toMutableList()

  var check = false
  val arrs = (1..n).map {
    val arr = readLine()!!.split(" ").map { it.toInt() }
    arr
  }

  total@for( arr in arrs ) {
    arr.mapIndexed { index, x ->
      xs[index] += x
    }
    // 尺取サーチ
    for( left in (0..xs.size-1) ) {
      for( right in (left..xs.size-1) ) {
        if( xs.slice( (left..right) ).sum() == 777 ) {
          check = true
          break@total
        }
      }
    }
  }

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