結果

問題 No.1285 ゴミ捨て
ユーザー surumeika1987surumeika1987
提出日時 2020-11-19 16:44:35
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 11,983 ms
コンパイル使用メモリ 427,188 KB
実行使用メモリ 68,900 KB
最終ジャッジ日時 2024-07-23 10:06:26
合計ジャッジ時間 24,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
57,852 KB
testcase_01 AC 294 ms
57,764 KB
testcase_02 AC 302 ms
57,688 KB
testcase_03 AC 296 ms
57,864 KB
testcase_04 AC 292 ms
57,784 KB
testcase_05 AC 305 ms
57,792 KB
testcase_06 AC 295 ms
57,900 KB
testcase_07 WA -
testcase_08 AC 373 ms
61,680 KB
testcase_09 AC 504 ms
64,428 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 446 ms
62,152 KB
testcase_17 AC 470 ms
61,976 KB
testcase_18 AC 476 ms
62,036 KB
testcase_19 WA -
testcase_20 AC 475 ms
62,060 KB
testcase_21 AC 470 ms
62,264 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n_num = readLine()!!.toInt();
    val arr = Array(n_num) {
        readLine()!!.toInt()
    }
    arr.sort()
    
    var now = -3
    var cnt = 1
    for (i in arr.indices) {
        val ai = arr[i]
        if (now + 1 < ai) {
            now = ai
        } else {
            now = ai
            cnt++
        }
    }

    println(cnt)
}
0