結果

問題 No.627 ランダムウォークの軌跡
ユーザー ichibanshiboriichibanshibori
提出日時 2018-05-03 00:21:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 10,122 ms
コンパイル使用メモリ 434,940 KB
実行使用メモリ 56,812 KB
最終ジャッジ日時 2024-04-30 18:28:39
合計ジャッジ時間 20,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
56,748 KB
testcase_01 AC 274 ms
56,648 KB
testcase_02 AC 281 ms
56,756 KB
testcase_03 AC 282 ms
56,608 KB
testcase_04 AC 267 ms
56,612 KB
testcase_05 AC 283 ms
56,752 KB
testcase_06 AC 273 ms
56,664 KB
testcase_07 AC 268 ms
56,704 KB
testcase_08 AC 267 ms
56,648 KB
testcase_09 AC 285 ms
56,744 KB
testcase_10 AC 281 ms
56,712 KB
testcase_11 AC 279 ms
56,612 KB
testcase_12 AC 265 ms
56,780 KB
testcase_13 AC 273 ms
56,812 KB
testcase_14 AC 270 ms
56,756 KB
testcase_15 AC 266 ms
56,636 KB
testcase_16 AC 262 ms
56,636 KB
testcase_17 AC 267 ms
56,624 KB
testcase_18 AC 267 ms
56,732 KB
testcase_19 AC 264 ms
56,736 KB
testcase_20 AC 264 ms
56,668 KB
testcase_21 AC 269 ms
56,720 KB
testcase_22 AC 268 ms
56,652 KB
testcase_23 AC 268 ms
56,772 KB
testcase_24 AC 269 ms
56,692 KB
testcase_25 AC 272 ms
56,756 KB
testcase_26 AC 273 ms
56,628 KB
testcase_27 AC 264 ms
56,644 KB
testcase_28 AC 265 ms
56,776 KB
testcase_29 AC 279 ms
56,704 KB
testcase_30 AC 264 ms
56,772 KB
testcase_31 AC 261 ms
56,744 KB
testcase_32 AC 280 ms
56,604 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