結果

問題 No.26 シャッフルゲーム
ユーザー バカらっくバカらっく
提出日時 2019-09-04 18:42:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 10,176 ms
コンパイル使用メモリ 431,288 KB
実行使用メモリ 52,260 KB
最終ジャッジ日時 2024-06-09 08:32:31
合計ジャッジ時間 14,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
51,876 KB
testcase_01 AC 278 ms
52,240 KB
testcase_02 AC 311 ms
51,960 KB
testcase_03 AC 274 ms
51,760 KB
testcase_04 AC 281 ms
52,260 KB
testcase_05 AC 288 ms
51,964 KB
testcase_06 AC 286 ms
52,100 KB
testcase_07 AC 280 ms
52,148 KB
testcase_08 AC 290 ms
52,092 KB
testcase_09 AC 283 ms
52,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val initialPos = readLine()!!.toInt()
    val inputCount = readLine()!!.toInt()
    var currentPos = initialPos
    (1..inputCount).forEach {
        val rep = readLine()!!.split(" ").map { it.toInt() }
        if(rep.contains(currentPos)) {
            currentPos = rep.filter { it != currentPos }.first()
        }
    }
    println(currentPos)
}
0