結果

問題 No.163 cAPSlOCK
ユーザー minokasagominokasago
提出日時 2019-11-01 13:42:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 11,416 ms
コンパイル使用メモリ 429,892 KB
実行使用メモリ 49,788 KB
最終ジャッジ日時 2024-09-14 22:37:25
合計ジャッジ時間 19,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
49,728 KB
testcase_01 AC 286 ms
49,720 KB
testcase_02 AC 284 ms
49,676 KB
testcase_03 AC 286 ms
49,532 KB
testcase_04 AC 284 ms
49,676 KB
testcase_05 AC 283 ms
49,512 KB
testcase_06 AC 284 ms
49,656 KB
testcase_07 AC 286 ms
49,780 KB
testcase_08 AC 288 ms
49,464 KB
testcase_09 AC 294 ms
49,656 KB
testcase_10 AC 289 ms
49,444 KB
testcase_11 AC 288 ms
49,788 KB
testcase_12 AC 292 ms
49,684 KB
testcase_13 AC 292 ms
49,644 KB
testcase_14 AC 290 ms
49,316 KB
testcase_15 AC 285 ms
49,452 KB
testcase_16 AC 287 ms
49,536 KB
testcase_17 AC 288 ms
49,464 KB
testcase_18 AC 289 ms
49,448 KB
testcase_19 AC 288 ms
49,620 KB
testcase_20 AC 285 ms
49,516 KB
testcase_21 AC 285 ms
49,636 KB
testcase_22 AC 286 ms
49,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:11:26: warning: 'toLowerCase(): Char' is deprecated. Use lowercaseChar() instead.
            sb.append(it.toLowerCase())
                         ^
Main.kt:13:26: warning: 'toUpperCase(): Char' is deprecated. Use uppercaseChar() instead.
            sb.append(it.toUpperCase())
                         ^

ソースコード

diff #

import kotlin.math.*
//import kotlin.text.*

fun main()
{
    val S = readLine()!!
    val sb = StringBuilder()

    S.forEach {
        if (it.isUpperCase()) {
            sb.append(it.toLowerCase())
        } else {
            sb.append(it.toUpperCase())
        }
    }

    println(sb)
}
0