結果

問題 No.1455 拡張ROTN
ユーザー face4face4
提出日時 2021-04-10 23:13:28
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 13,269 ms
コンパイル使用メモリ 435,748 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-26 20:25:49
合計ジャッジ時間 21,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
54,324 KB
testcase_01 WA -
testcase_02 AC 305 ms
54,360 KB
testcase_03 AC 307 ms
54,484 KB
testcase_04 AC 307 ms
54,364 KB
testcase_05 AC 296 ms
54,432 KB
testcase_06 AC 306 ms
54,312 KB
testcase_07 AC 305 ms
54,436 KB
testcase_08 AC 295 ms
54,372 KB
testcase_09 AC 288 ms
54,460 KB
testcase_10 AC 294 ms
54,128 KB
testcase_11 AC 293 ms
54,396 KB
testcase_12 AC 285 ms
54,244 KB
testcase_13 AC 291 ms
54,288 KB
testcase_14 AC 288 ms
54,328 KB
testcase_15 AC 284 ms
54,340 KB
testcase_16 AC 288 ms
54,248 KB
testcase_17 AC 295 ms
54,232 KB
testcase_18 AC 291 ms
54,276 KB
testcase_19 AC 290 ms
54,392 KB
testcase_20 AC 284 ms
54,228 KB
testcase_21 AC 288 ms
54,240 KB
testcase_22 AC 284 ms
54,224 KB
testcase_23 AC 291 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    var s = readLine()!!
    val n = readLine()!!.toLong()
    repeat(10L.coerceAtMost(n).toInt()){
        var next = StringBuilder()
        for(i in s.indices){
            next.append(when(s[i]){
                in 'a'..'z' -> 'a'+(s[i]-'a'+1)%26
                in 'A'..'Z' -> 'A'+(s[i]-'A'+1)%26
                in '0'..'8' -> '0'+(s[i]-'0'+1)%26
                '9' -> "CpCzNkSuTbEoA"
                else -> ""
            })
        }
        s = next.toString()
    }
    val res = (0L.coerceAtLeast(n-10)%26).toInt()
    val answer = StringBuilder()
    for(i in s.indices){
        answer.append(when(s[i]){
            in 'a'..'z' -> 'a'+(s[i]-'a'+res)%26
            in 'A'..'Z' -> 'A'+(s[i]-'A'+res)%26
            else -> ""
        })
    }
    println(answer.toString())
}
0