結果

問題 No.627 ランダムウォークの軌跡
ユーザー ichibanshiboriichibanshibori
提出日時 2018-05-03 00:21:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 11,284 ms
コンパイル使用メモリ 429,848 KB
実行使用メモリ 56,788 KB
最終ジャッジ日時 2024-11-20 15:54:31
合計ジャッジ時間 23,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
56,676 KB
testcase_01 AC 318 ms
56,788 KB
testcase_02 AC 318 ms
56,728 KB
testcase_03 AC 318 ms
56,724 KB
testcase_04 AC 320 ms
56,728 KB
testcase_05 AC 319 ms
56,676 KB
testcase_06 AC 318 ms
56,636 KB
testcase_07 AC 316 ms
56,692 KB
testcase_08 AC 317 ms
56,660 KB
testcase_09 AC 324 ms
56,732 KB
testcase_10 AC 320 ms
56,620 KB
testcase_11 AC 318 ms
56,740 KB
testcase_12 AC 322 ms
56,744 KB
testcase_13 AC 322 ms
56,764 KB
testcase_14 AC 327 ms
56,664 KB
testcase_15 AC 326 ms
56,620 KB
testcase_16 AC 328 ms
56,696 KB
testcase_17 AC 325 ms
56,660 KB
testcase_18 AC 326 ms
56,728 KB
testcase_19 AC 325 ms
56,680 KB
testcase_20 AC 328 ms
56,660 KB
testcase_21 AC 328 ms
56,684 KB
testcase_22 AC 327 ms
56,768 KB
testcase_23 AC 330 ms
56,740 KB
testcase_24 AC 327 ms
56,688 KB
testcase_25 AC 323 ms
56,576 KB
testcase_26 AC 326 ms
56,672 KB
testcase_27 AC 329 ms
56,704 KB
testcase_28 AC 335 ms
56,704 KB
testcase_29 AC 334 ms
56,676 KB
testcase_30 AC 326 ms
56,708 KB
testcase_31 AC 324 ms
56,732 KB
testcase_32 AC 326 ms
56,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.abs

fun main(args : Array<String>) {
	val T = (readLine() ?: "").run { toInt() }
	val xLst = IntRange(1, T).map { readLine() ?: "" }.map { it.toInt() }
	
	(listOf(0) + xLst)
		.zipWithNext()
		.all { abs(it.first - it.second) == 1 }
		.let {
			when(it) {
				true -> "T"
				false -> "F"
			}
		}
		.let { println(it) }
}
0