結果

問題 No.1020 Reverse
ユーザー conf8oconf8o
提出日時 2020-04-16 15:29:07
言語 Swift
(5.10.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 182,616 KB
実行使用メモリ 16,200 KB
最終ジャッジ日時 2024-11-30 17:28:02
合計ジャッジ時間 2,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
15,360 KB
testcase_01 AC 10 ms
15,488 KB
testcase_02 AC 10 ms
15,616 KB
testcase_03 AC 9 ms
15,744 KB
testcase_04 AC 9 ms
15,744 KB
testcase_05 AC 9 ms
15,488 KB
testcase_06 AC 9 ms
15,872 KB
testcase_07 AC 17 ms
15,744 KB
testcase_08 AC 13 ms
15,740 KB
testcase_09 AC 12 ms
15,872 KB
testcase_10 AC 24 ms
15,880 KB
testcase_11 AC 30 ms
16,128 KB
testcase_12 AC 16 ms
16,000 KB
testcase_13 AC 15 ms
15,872 KB
testcase_14 AC 31 ms
16,000 KB
testcase_15 AC 41 ms
15,940 KB
testcase_16 AC 43 ms
16,200 KB
testcase_17 AC 15 ms
16,060 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