結果

問題 No.1285 ゴミ捨て
ユーザー surumeika1987surumeika1987
提出日時 2020-11-19 16:50:48
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 11,756 ms
コンパイル使用メモリ 436,792 KB
実行使用メモリ 71,020 KB
最終ジャッジ日時 2024-07-23 10:07:31
合計ジャッジ時間 25,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
57,716 KB
testcase_01 AC 321 ms
57,820 KB
testcase_02 AC 327 ms
57,768 KB
testcase_03 AC 331 ms
57,888 KB
testcase_04 AC 317 ms
57,860 KB
testcase_05 AC 324 ms
57,824 KB
testcase_06 AC 317 ms
57,748 KB
testcase_07 WA -
testcase_08 AC 416 ms
61,884 KB
testcase_09 AC 585 ms
64,584 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 501 ms
62,528 KB
testcase_17 AC 507 ms
62,468 KB
testcase_18 AC 503 ms
62,104 KB
testcase_19 WA -
testcase_20 AC 488 ms
62,184 KB
testcase_21 AC 517 ms
62,624 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    println(cnt)
}
0