結果

問題 No.1020 Reverse
ユーザー da_louisda_louis
提出日時 2020-04-10 21:36:45
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 378 bytes
コンパイル時間 12,990 ms
コンパイル使用メモリ 436,056 KB
実行使用メモリ 93,868 KB
最終ジャッジ日時 2024-09-15 19:30:55
合計ジャッジ時間 19,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
58,716 KB
testcase_01 AC 349 ms
91,432 KB
testcase_02 AC 348 ms
60,984 KB
testcase_03 AC 429 ms
57,904 KB
testcase_04 AC 350 ms
55,548 KB
testcase_05 AC 427 ms
58,284 KB
testcase_06 AC 371 ms
56,024 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = p1020()
         ^

ソースコード

diff #

fun main(args: Array<String>) = p1020()

fun p1020() {
    val (n, k) = readLine()!!.split(' ').map { it.toInt() }
    val s = readLine()!!.toCharArray()

    for (i in 0..n - k) {
        val slice = s.slice(i until i + k).reversed()
        for (j in i until i + k) {
            s[j] = slice[j - i]
        }
    }

    val answer = s.joinToString("")

    println(answer)
}
0