結果

問題 No.18 うーさー暗号
ユーザー バカらっくバカらっく
提出日時 2019-09-01 12:40:15
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 13,202 ms
コンパイル使用メモリ 429,048 KB
実行使用メモリ 57,264 KB
最終ジャッジ日時 2024-05-05 20:23:54
合計ジャッジ時間 17,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
51,860 KB
testcase_01 AC 285 ms
51,760 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 288 ms
51,624 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val inText = readLine()!!
    val arr = inText.map { it }.toMutableList()
    for(i in arr.indices) {
        var newChar = arr[i] - (i+1)
        while (newChar < 'A') {
            newChar = 'Z' - ('A' - newChar - 1)
        }
        arr[i] = newChar
    }
    println(arr.joinToString(""))
}
0