結果

問題 No.163 cAPSlOCK
ユーザー da_louisda_louis
提出日時 2020-02-07 00:34:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 9,773 ms
コンパイル使用メモリ 432,880 KB
実行使用メモリ 57,088 KB
最終ジャッジ日時 2024-09-25 07:06:07
合計ジャッジ時間 17,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,804 KB
testcase_01 AC 302 ms
56,880 KB
testcase_02 AC 303 ms
56,948 KB
testcase_03 AC 301 ms
56,832 KB
testcase_04 AC 300 ms
57,004 KB
testcase_05 AC 300 ms
56,972 KB
testcase_06 AC 301 ms
56,764 KB
testcase_07 AC 303 ms
57,012 KB
testcase_08 AC 300 ms
56,708 KB
testcase_09 AC 302 ms
56,976 KB
testcase_10 AC 298 ms
56,996 KB
testcase_11 AC 296 ms
56,948 KB
testcase_12 AC 305 ms
56,904 KB
testcase_13 AC 303 ms
56,860 KB
testcase_14 AC 300 ms
56,864 KB
testcase_15 AC 308 ms
56,944 KB
testcase_16 AC 302 ms
56,868 KB
testcase_17 AC 297 ms
57,088 KB
testcase_18 AC 301 ms
56,792 KB
testcase_19 AC 294 ms
56,940 KB
testcase_20 AC 300 ms
57,036 KB
testcase_21 AC 297 ms
57,040 KB
testcase_22 AC 297 ms
57,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:8:49: warning: 'toUpperCase(): Char' is deprecated. Use uppercaseChar() instead.
    val answer = s.map { if (it in 'a'..'z') it.toUpperCase() else it.toLowerCase() }.joinToString("")
                                                ^
Main.kt:8:71: warning: 'toLowerCase(): Char' is deprecated. Use lowercaseChar() instead.
    val answer = s.map { if (it in 'a'..'z') it.toUpperCase() else it.toLowerCase() }.joinToString("")
                                                                      ^

ソースコード

diff #

fun main(args: Array<String>) {
    p339()
}

fun p339() {
    val s = readLine()!!

    val answer = s.map { if (it in 'a'..'z') it.toUpperCase() else it.toLowerCase() }.joinToString("")

    println(answer)
}
0