結果

問題 No.1020 Reverse
ユーザー conf8oconf8o
提出日時 2020-04-16 15:29:07
言語 Swift
(5.10.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 181,360 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-05-07 21:08:43
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
15,616 KB
testcase_01 AC 11 ms
15,488 KB
testcase_02 AC 11 ms
15,872 KB
testcase_03 AC 11 ms
15,616 KB
testcase_04 AC 11 ms
15,616 KB
testcase_05 AC 11 ms
15,488 KB
testcase_06 AC 11 ms
15,616 KB
testcase_07 AC 20 ms
16,128 KB
testcase_08 AC 14 ms
15,844 KB
testcase_09 AC 14 ms
16,000 KB
testcase_10 AC 25 ms
16,128 KB
testcase_11 AC 31 ms
16,128 KB
testcase_12 AC 15 ms
15,872 KB
testcase_13 AC 15 ms
15,872 KB
testcase_14 AC 33 ms
15,752 KB
testcase_15 AC 43 ms
15,940 KB
testcase_16 AC 45 ms
16,000 KB
testcase_17 AC 15 ms
15,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation

func readInt() -> [Int] {
    return readLine()!.split(separator: " ").map { c in Int(c)! }
}

func main() {
    let line = readInt()
    let N = line[0]
    let K = line[1]

    let S = readLine()!

    let front = S.prefix(K-1)
    var back = S.suffix(N-K+1)

    if (N - K) % 2 == 0 {
        back += front.reversed()
    } else {
        back += front
    }

    print(back)
}

main()
0