結果

問題 No.607 開通777年記念
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-16 15:25:59
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 608 bytes
コンパイル時間 12,308 ms
コンパイル使用メモリ 444,784 KB
実行使用メモリ 157,344 KB
最終ジャッジ日時 2024-11-20 13:52:01
合計ジャッジ時間 25,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
60,348 KB
testcase_01 AC 291 ms
94,864 KB
testcase_02 AC 304 ms
63,940 KB
testcase_03 AC 298 ms
157,344 KB
testcase_04 AC 302 ms
60,568 KB
testcase_05 AC 299 ms
94,920 KB
testcase_06 AC 299 ms
63,928 KB
testcase_07 TLE -
testcase_08 AC 304 ms
60,624 KB
testcase_09 AC 603 ms
127,568 KB
testcase_10 AC 441 ms
73,160 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) { 
         ^
Main.kt:11:11: warning: name shadowed: xs
  }.map { xs ->
          ^

ソースコード

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 { 
    readLine()!!.split(" ").map { it.toInt() }.mapIndexed { index, x ->
      xs[index] += x
    }
    xs.toList()
  }.map { xs ->
    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