結果

問題 No.18 うーさー暗号
ユーザー komkomhkomkomh
提出日時 2019-06-07 22:06:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 297 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 9,076 ms
コンパイル使用メモリ 429,796 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-04-30 20:54:18
合計ジャッジ時間 13,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
54,148 KB
testcase_01 AC 262 ms
54,296 KB
testcase_02 AC 253 ms
54,232 KB
testcase_03 AC 275 ms
54,416 KB
testcase_04 AC 280 ms
54,540 KB
testcase_05 AC 295 ms
54,492 KB
testcase_06 AC 291 ms
54,668 KB
testcase_07 AC 297 ms
54,440 KB
testcase_08 AC 293 ms
54,472 KB
testcase_09 AC 285 ms
54,508 KB
testcase_10 AC 266 ms
54,284 KB
testcase_11 AC 265 ms
54,276 KB
testcase_12 AC 288 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    var s = readLine()!!

    val bind: Int = 'Z' - 'A' + 1
    for (i in 0 until s.length) {
        val index = i % bind
        var c: Char = s[i] - index - 1
        while (c < 'A') {
            c += bind
        }
        print(c)
    }
    println()
}
0