結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
56,756 KB
testcase_01 AC 321 ms
56,692 KB
testcase_02 AC 326 ms
56,644 KB
testcase_03 AC 328 ms
56,664 KB
testcase_04 AC 324 ms
56,848 KB
testcase_05 AC 323 ms
56,800 KB
testcase_06 AC 321 ms
56,576 KB
testcase_07 AC 325 ms
56,728 KB
testcase_08 AC 322 ms
56,724 KB
testcase_09 AC 320 ms
56,724 KB
testcase_10 AC 322 ms
56,812 KB
testcase_11 AC 322 ms
56,688 KB
testcase_12 AC 322 ms
56,724 KB
testcase_13 AC 323 ms
56,612 KB
testcase_14 AC 325 ms
56,644 KB
testcase_15 AC 324 ms
56,720 KB
testcase_16 AC 322 ms
56,596 KB
testcase_17 AC 327 ms
56,592 KB
testcase_18 AC 329 ms
56,800 KB
testcase_19 AC 328 ms
56,588 KB
testcase_20 AC 327 ms
56,764 KB
testcase_21 AC 327 ms
56,648 KB
testcase_22 AC 327 ms
56,744 KB
testcase_23 AC 334 ms
56,652 KB
testcase_24 AC 333 ms
56,656 KB
testcase_25 AC 328 ms
56,756 KB
testcase_26 AC 329 ms
56,580 KB
testcase_27 AC 330 ms
56,720 KB
testcase_28 AC 342 ms
56,744 KB
testcase_29 AC 331 ms
56,612 KB
testcase_30 AC 330 ms
56,680 KB
testcase_31 AC 332 ms
56,772 KB
testcase_32 AC 325 ms
56,656 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