結果

問題 No.1020 Reverse
ユーザー Keisuke KubotaKeisuke Kubota
提出日時 2020-04-10 22:36:57
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 13,683 ms
コンパイル使用メモリ 233,768 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 21:09:25
合計ジャッジ時間 17,026 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 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 131 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 200 ms
5,376 KB
testcase_13 AC 201 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 472 ms
5,760 KB
testcase_16 AC 477 ms
5,760 KB
testcase_17 AC 187 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 {
    for i:=n; i>0; i-- {
      fmt.Print(str[i-1:i])
    }
  } else {
    fmt.Println(str[k-1:]+str[:k-1])
  }
}
0