結果

問題 No.1285 ゴミ捨て
ユーザー surumeika1987surumeika1987
提出日時 2020-11-19 16:46:47
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 11,419 ms
コンパイル使用メモリ 434,340 KB
実行使用メモリ 70,944 KB
最終ジャッジ日時 2024-07-23 10:07:02
合計ジャッジ時間 24,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
57,748 KB
testcase_01 AC 295 ms
57,896 KB
testcase_02 AC 299 ms
57,868 KB
testcase_03 AC 301 ms
57,876 KB
testcase_04 AC 291 ms
57,816 KB
testcase_05 AC 303 ms
57,696 KB
testcase_06 AC 300 ms
57,872 KB
testcase_07 WA -
testcase_08 AC 379 ms
61,768 KB
testcase_09 AC 508 ms
64,472 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 457 ms
62,204 KB
testcase_17 AC 456 ms
62,100 KB
testcase_18 AC 456 ms
61,804 KB
testcase_19 WA -
testcase_20 AC 454 ms
62,208 KB
testcase_21 AC 460 ms
62,244 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()
    
    var now = -3L
    var cnt = 1
    for (i in arr.indices) {
        val ai : Long = arr[i]
        if (now + 1 < ai) {
            now = ai
        } else {
            now = ai
            cnt++
        }
    }

    println(cnt)
}
0