結果

問題 No.163 cAPSlOCK
ユーザー バカらっくバカらっく
提出日時 2019-11-26 03:07:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 171 bytes
コンパイル時間 12,267 ms
コンパイル使用メモリ 436,584 KB
実行使用メモリ 51,808 KB
最終ジャッジ日時 2024-10-15 14:20:33
合計ジャッジ時間 19,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
51,808 KB
testcase_01 AC 291 ms
51,728 KB
testcase_02 AC 286 ms
51,452 KB
testcase_03 AC 291 ms
51,604 KB
testcase_04 AC 286 ms
51,444 KB
testcase_05 AC 291 ms
51,568 KB
testcase_06 AC 293 ms
51,744 KB
testcase_07 AC 281 ms
51,696 KB
testcase_08 AC 285 ms
51,568 KB
testcase_09 AC 286 ms
51,396 KB
testcase_10 AC 284 ms
51,580 KB
testcase_11 AC 288 ms
51,604 KB
testcase_12 AC 287 ms
51,692 KB
testcase_13 AC 295 ms
51,428 KB
testcase_14 AC 290 ms
51,448 KB
testcase_15 AC 290 ms
51,712 KB
testcase_16 AC 291 ms
51,760 KB
testcase_17 AC 284 ms
51,696 KB
testcase_18 AC 281 ms
51,580 KB
testcase_19 AC 280 ms
51,684 KB
testcase_20 AC 288 ms
51,760 KB
testcase_21 AC 291 ms
51,492 KB
testcase_22 AC 281 ms
51,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:3:41: warning: 'toUpperCase(): Char' is deprecated. Use uppercaseChar() instead.
    val inpt = readLine()!!.map { if(it.toUpperCase() == it) it.toLowerCase() else it.toUpperCase() }.joinToString("")
                                        ^
Main.kt:3:65: warning: 'toLowerCase(): Char' is deprecated. Use lowercaseChar() instead.
    val inpt = readLine()!!.map { if(it.toUpperCase() == it) it.toLowerCase() else it.toUpperCase() }.joinToString("")
                                                                ^
Main.kt:3:87: warning: 'toUpperCase(): Char' is deprecated. Use uppercaseChar() instead.
    val inpt = readLine()!!.map { if(it.toUpperCase() == it) it.toLowerCase() else it.toUpperCase() }.joinToString("")
                                                                                      ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val inpt = readLine()!!.map { if(it.toUpperCase() == it) it.toLowerCase() else it.toUpperCase() }.joinToString("")
    println(inpt)
}

0