結果

問題 No.69 文字を自由に並び替え
コンテスト
ユーザー rutilicus
提出日時 2020-08-30 22:10:52
言語 Kotlin
(2.1.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 430 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,320 ms
コンパイル使用メモリ 399,800 KB
最終ジャッジ日時 2025-12-19 05:18:01
合計ジャッジ時間 8,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Main.kt:15:13: error: 'fun StringBuilder.appendln(value: String?): StringBuilder' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(if ((0..('z' - 'a')).all { aCnt[it] == bCnt[it] }) "YES" else "NO")
            ^^^^^^^^

ソースコード

diff #
raw source code

fun main() {
    val builder = StringBuilder()

    val aCnt = IntArray('z' - 'a' + 1)
    val bCnt = IntArray('z' - 'a' + 1)

    readInputLine().forEach {
        aCnt[it - 'a']++
    }

    readInputLine().forEach {
        bCnt[it - 'a']++
    }

    builder.appendln(if ((0..('z' - 'a')).all { aCnt[it] == bCnt[it] }) "YES" else "NO")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0