結果

問題 No.365 ジェンガソート
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-10 19:18:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 10,530 ms
コンパイル使用メモリ 430,424 KB
実行使用メモリ 64,380 KB
最終ジャッジ日時 2024-07-08 06:09:33
合計ジャッジ時間 29,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
51,832 KB
testcase_01 AC 306 ms
51,684 KB
testcase_02 AC 306 ms
51,784 KB
testcase_03 AC 307 ms
51,728 KB
testcase_04 AC 307 ms
51,848 KB
testcase_05 AC 303 ms
51,928 KB
testcase_06 AC 305 ms
51,700 KB
testcase_07 AC 312 ms
51,908 KB
testcase_08 AC 307 ms
52,004 KB
testcase_09 AC 320 ms
51,652 KB
testcase_10 AC 315 ms
51,548 KB
testcase_11 AC 306 ms
51,724 KB
testcase_12 AC 310 ms
51,896 KB
testcase_13 AC 314 ms
51,804 KB
testcase_14 AC 307 ms
51,784 KB
testcase_15 AC 324 ms
51,872 KB
testcase_16 AC 529 ms
62,640 KB
testcase_17 AC 502 ms
63,888 KB
testcase_18 AC 406 ms
52,936 KB
testcase_19 AC 496 ms
63,708 KB
testcase_20 AC 469 ms
57,644 KB
testcase_21 AC 486 ms
56,564 KB
testcase_22 AC 503 ms
62,416 KB
testcase_23 AC 479 ms
58,784 KB
testcase_24 AC 496 ms
62,292 KB
testcase_25 AC 455 ms
56,380 KB
testcase_26 AC 483 ms
60,468 KB
testcase_27 AC 501 ms
64,240 KB
testcase_28 AC 480 ms
60,620 KB
testcase_29 AC 506 ms
63,448 KB
testcase_30 AC 513 ms
60,916 KB
testcase_31 AC 499 ms
57,300 KB
testcase_32 AC 502 ms
56,696 KB
testcase_33 AC 542 ms
64,124 KB
testcase_34 AC 423 ms
53,936 KB
testcase_35 AC 492 ms
61,888 KB
testcase_36 AC 500 ms
64,284 KB
testcase_37 AC 500 ms
64,256 KB
testcase_38 AC 509 ms
64,224 KB
testcase_39 AC 521 ms
64,380 KB
testcase_40 AC 508 ms
64,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map { it.toInt() }.reversed()

    var last = n
    for (ai in a) if (ai == last) last--

    println(last)
}
0