結果

問題 No.18 うーさー暗号
ユーザー minokasagominokasago
提出日時 2019-11-01 15:01:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 303 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 10,830 ms
コンパイル使用メモリ 431,284 KB
実行使用メモリ 49,748 KB
最終ジャッジ日時 2024-09-14 22:41:54
合計ジャッジ時間 15,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,676 KB
testcase_01 AC 283 ms
49,560 KB
testcase_02 AC 280 ms
49,576 KB
testcase_03 AC 293 ms
49,704 KB
testcase_04 AC 303 ms
49,716 KB
testcase_05 AC 302 ms
49,676 KB
testcase_06 AC 290 ms
49,748 KB
testcase_07 AC 290 ms
49,528 KB
testcase_08 AC 289 ms
49,652 KB
testcase_09 AC 296 ms
49,492 KB
testcase_10 AC 290 ms
49,580 KB
testcase_11 AC 283 ms
49,704 KB
testcase_12 AC 294 ms
49,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

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

    for (i in 1..S.length) {
        sb.append('A' + (((S[i-1] - 'A' - i) % 26) + 26) % 26)
    }

    println(sb)
}

0