結果

問題 No.18 うーさー暗号
ユーザー komkomhkomkomh
提出日時 2019-06-07 22:06:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 327 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 11,347 ms
コンパイル使用メモリ 426,056 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-11-20 18:46:32
合計ジャッジ時間 15,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
49,640 KB
testcase_01 AC 289 ms
49,628 KB
testcase_02 AC 291 ms
49,672 KB
testcase_03 AC 324 ms
50,304 KB
testcase_04 AC 318 ms
50,076 KB
testcase_05 AC 317 ms
50,140 KB
testcase_06 AC 327 ms
49,928 KB
testcase_07 AC 322 ms
50,064 KB
testcase_08 AC 324 ms
50,092 KB
testcase_09 AC 321 ms
50,048 KB
testcase_10 AC 297 ms
49,744 KB
testcase_11 AC 290 ms
49,680 KB
testcase_12 AC 319 ms
50,044 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