結果

問題 No.1020 Reverse
ユーザー Keisuke KubotaKeisuke Kubota
提出日時 2020-04-10 22:28:37
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 15,269 ms
コンパイル使用メモリ 239,016 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-09-15 20:58:12
合計ジャッジ時間 17,943 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 157 ms
5,376 KB
testcase_09 AC 129 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 196 ms
5,376 KB
testcase_13 AC 203 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 183 ms
5,376 KB
testcase_16 AC 187 ms
5,376 KB
testcase_17 AC 184 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
  "fmt"
)

func main() {
  var (
    n,k int
    str string
  )
  fmt.Scan(&n)
  fmt.Scan(&k)
  fmt.Scan(&str)
  if n==k {
    fmt.Println(reverse(str))
  } else {
    fmt.Println(str[k-1:]+str[:k-1])
  }
}

func reverse(s string) string {
    rs := []rune(s)
    for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {
        rs[i], rs[j] = rs[j], rs[i]
    }
    return string(rs)
}
0