結果

問題 No.163 cAPSlOCK
ユーザー javyjavy
提出日時 2015-11-02 22:22:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 11,539 ms
コンパイル使用メモリ 433,752 KB
実行使用メモリ 56,940 KB
最終ジャッジ日時 2024-11-19 14:52:38
合計ジャッジ時間 17,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
56,904 KB
testcase_01 AC 271 ms
56,832 KB
testcase_02 AC 269 ms
56,884 KB
testcase_03 AC 280 ms
56,684 KB
testcase_04 AC 275 ms
56,788 KB
testcase_05 AC 275 ms
56,928 KB
testcase_06 AC 277 ms
56,772 KB
testcase_07 AC 273 ms
56,604 KB
testcase_08 AC 274 ms
56,780 KB
testcase_09 AC 275 ms
56,784 KB
testcase_10 AC 271 ms
56,928 KB
testcase_11 AC 272 ms
56,940 KB
testcase_12 AC 271 ms
56,700 KB
testcase_13 AC 275 ms
56,764 KB
testcase_14 AC 275 ms
56,800 KB
testcase_15 AC 270 ms
56,748 KB
testcase_16 AC 275 ms
56,776 KB
testcase_17 AC 269 ms
56,860 KB
testcase_18 AC 268 ms
56,676 KB
testcase_19 AC 263 ms
56,876 KB
testcase_20 AC 262 ms
56,860 KB
testcase_21 AC 277 ms
56,876 KB
testcase_22 AC 268 ms
56,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val list = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
    val str = readLine() as String

    for (ch in str) {
        print(list[(list.indexOf(ch) + 52 + 26)%52])
    }
    println()
}
0