結果

問題 No.2092 Conjugation
ユーザー 箱星箱星
提出日時 2022-08-31 07:08:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 13,815 ms
コンパイル使用メモリ 440,036 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-12-22 03:02:30
合計ジャッジ時間 23,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
55,940 KB
testcase_01 AC 332 ms
56,052 KB
testcase_02 AC 335 ms
56,208 KB
testcase_03 AC 326 ms
56,036 KB
testcase_04 AC 332 ms
55,940 KB
testcase_05 AC 327 ms
56,064 KB
testcase_06 AC 332 ms
56,212 KB
testcase_07 AC 414 ms
57,716 KB
testcase_08 AC 616 ms
73,680 KB
testcase_09 AC 589 ms
69,972 KB
testcase_10 AC 594 ms
70,292 KB
testcase_11 AC 578 ms
70,368 KB
testcase_12 AC 581 ms
69,332 KB
testcase_13 AC 551 ms
63,864 KB
testcase_14 AC 507 ms
63,376 KB
testcase_15 AC 630 ms
69,300 KB
testcase_16 AC 623 ms
74,968 KB
testcase_17 AC 615 ms
79,104 KB
testcase_18 AC 646 ms
75,888 KB
testcase_19 AC 495 ms
65,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:9: warning: variable 'n' is never used
    val n = readln().toInt()
        ^

ソースコード

diff #

fun main() {
    val n = readln().toInt()
    val a = readln().split(" ").map { it.toInt() }
    val b = Array(100001) { 0 }
    for (v in a) {
        b[v]++
    }
    for (i in 99999 downTo 0) {
        b[i] += b[i + 1]
    }
    println(b.drop(1).take(a[0]).joinToString(" "))
}
0