結果

問題 No.69 文字を自由に並び替え
ユーザー rutilicusrutilicus
提出日時 2020-08-30 22:10:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 11,729 ms
コンパイル使用メモリ 435,244 KB
実行使用メモリ 51,420 KB
最終ジャッジ日時 2024-11-15 15:40:43
合計ジャッジ時間 17,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
51,132 KB
testcase_01 AC 311 ms
51,284 KB
testcase_02 AC 314 ms
51,088 KB
testcase_03 AC 313 ms
51,304 KB
testcase_04 AC 308 ms
50,972 KB
testcase_05 AC 312 ms
51,312 KB
testcase_06 AC 308 ms
51,420 KB
testcase_07 AC 309 ms
51,100 KB
testcase_08 AC 310 ms
50,856 KB
testcase_09 AC 310 ms
51,080 KB
testcase_10 AC 310 ms
50,968 KB
testcase_11 AC 307 ms
50,984 KB
testcase_12 AC 309 ms
50,884 KB
testcase_13 AC 310 ms
51,192 KB
testcase_14 AC 309 ms
51,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:15:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.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 #

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