結果

問題 No.627 ランダムウォークの軌跡
ユーザー 💕💖💞💕💖💞
提出日時 2018-01-26 00:34:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 12,556 ms
コンパイル使用メモリ 429,816 KB
実行使用メモリ 56,808 KB
最終ジャッジ日時 2024-11-20 13:41:30
合計ジャッジ時間 23,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,724 KB
testcase_01 AC 311 ms
56,568 KB
testcase_02 AC 310 ms
56,620 KB
testcase_03 AC 305 ms
56,800 KB
testcase_04 AC 306 ms
56,656 KB
testcase_05 AC 302 ms
56,584 KB
testcase_06 AC 309 ms
56,560 KB
testcase_07 AC 309 ms
56,580 KB
testcase_08 AC 311 ms
56,748 KB
testcase_09 AC 310 ms
56,588 KB
testcase_10 AC 309 ms
56,616 KB
testcase_11 AC 308 ms
56,548 KB
testcase_12 AC 310 ms
56,608 KB
testcase_13 AC 309 ms
56,648 KB
testcase_14 AC 308 ms
56,620 KB
testcase_15 AC 310 ms
56,668 KB
testcase_16 AC 312 ms
56,552 KB
testcase_17 AC 315 ms
56,616 KB
testcase_18 AC 315 ms
56,808 KB
testcase_19 AC 312 ms
56,760 KB
testcase_20 AC 313 ms
56,604 KB
testcase_21 AC 315 ms
56,572 KB
testcase_22 AC 312 ms
56,504 KB
testcase_23 AC 312 ms
56,588 KB
testcase_24 AC 315 ms
56,632 KB
testcase_25 AC 316 ms
56,620 KB
testcase_26 AC 314 ms
56,532 KB
testcase_27 AC 313 ms
56,636 KB
testcase_28 AC 315 ms
56,784 KB
testcase_29 AC 317 ms
56,684 KB
testcase_30 AC 313 ms
56,696 KB
testcase_31 AC 303 ms
56,772 KB
testcase_32 AC 310 ms
56,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  val ll = (1..n).map { readLine()!!.toInt() }.toMutableList()
  ll.add(0, 0)
  (0..ll.size-2).map { i ->
    val delta = Math.abs(ll[i] - ll[i+1])
    delta == 1
  }.all {
    it == true
  }.let { when(it) {
      true -> println("T")
      else -> println("F")
    }
  }
}
0