結果

問題 No.170 スワップ文字列(Easy)
ユーザー rutilicusrutilicus
提出日時 2020-09-08 21:18:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 327 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 14,781 ms
コンパイル使用メモリ 439,544 KB
実行使用メモリ 52,992 KB
最終ジャッジ日時 2024-05-07 14:56:00
合計ジャッジ時間 20,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
50,940 KB
testcase_01 AC 276 ms
50,976 KB
testcase_02 AC 271 ms
50,972 KB
testcase_03 AC 271 ms
51,088 KB
testcase_04 AC 279 ms
51,108 KB
testcase_05 AC 273 ms
52,992 KB
testcase_06 AC 327 ms
51,108 KB
testcase_07 AC 275 ms
50,920 KB
testcase_08 AC 275 ms
50,968 KB
testcase_09 AC 275 ms
50,900 KB
testcase_10 AC 277 ms
50,904 KB
testcase_11 AC 280 ms
50,824 KB
testcase_12 AC 271 ms
51,108 KB
testcase_13 AC 278 ms
51,032 KB
testcase_14 AC 272 ms
51,052 KB
testcase_15 AC 269 ms
51,224 KB
testcase_16 AC 280 ms
50,828 KB
testcase_17 AC 276 ms
50,952 KB
testcase_18 AC 284 ms
51,008 KB
testcase_19 AC 277 ms
50,968 KB
testcase_20 AC 280 ms
51,088 KB
testcase_21 AC 280 ms
50,896 KB
testcase_22 AC 279 ms
50,900 KB
testcase_23 AC 276 ms
50,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:18:11: warning: variable 'c' is never used
    for ((c, ccnt) in cnt) {
          ^
Main.kt:24:13: warning: 'appendln(Int): 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(ans - 1)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val cnt = mutableMapOf<Char, Int>()

    val s = readInputLine()

    s.forEach {
        cnt[it] = (cnt[it] ?: 0) + 1
    }

    var ans = 1

    for (i in 1..s.length) {
        ans *= i
    }

    for ((c, ccnt) in cnt) {
        for (i in 1..ccnt) {
            ans /= i
        }
    }

    builder.appendln(ans - 1)

    print(builder.toString())
}

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