結果

問題 No.607 開通777年記念
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-16 15:12:08
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 13,078 ms
コンパイル使用メモリ 440,504 KB
実行使用メモリ 147,976 KB
最終ジャッジ日時 2024-11-20 13:49:36
合計ジャッジ時間 30,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
60,624 KB
testcase_01 AC 294 ms
95,240 KB
testcase_02 AC 306 ms
63,884 KB
testcase_03 WA -
testcase_04 AC 296 ms
60,480 KB
testcase_05 WA -
testcase_06 AC 290 ms
63,824 KB
testcase_07 TLE -
testcase_08 AC 320 ms
60,456 KB
testcase_09 TLE -
testcase_10 TLE -
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
  (1..n).map { 
    readLine()!!.split(" ").map { it.toInt() }.mapIndexed { index, x ->
      xs[index] += x

      for( s in (0..xs.size -1) ) { 
        for( e in (s+1..xs.size - 1) ) { 
          if( xs.slice(s..e).sum() == 777) {
            check = true
          }
        }
      }
    }
  }

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