結果

問題 No.1020 Reverse
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-04-17 19:46:07
言語 Go
(1.21.3)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 2,170 bytes
コンパイル時間 11,929 ms
コンパイル使用メモリ 212,312 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-07-26 23:15:37
合計ジャッジ時間 11,940 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 3 ms
4,384 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 3 ms
4,384 KB
testcase_10 AC 4 ms
4,380 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 4 ms
4,384 KB
testcase_13 AC 4 ms
4,384 KB
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 4 ms
4,384 KB
testcase_16 AC 4 ms
4,384 KB
testcase_17 AC 4 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"strconv"
)

const INFINITY = math.MaxInt64/2 - 1

func exec(stdin *Stdin, stdout *Stdout) {
	n := stdin.ReadInt()
	k := stdin.ReadInt()
	s := stdin.Read()

	a := s[k-1:]
	b := s[:k-1]

	if n%2 == k%2 {
		c := []byte(b)
		for i, x := 0, len(b); i < x/2; i++ {
			c[i], c[x-i-1] = c[x-i-1], c[i]
		}
		stdout.Println(a + string(c))
	} else {
		stdout.Println(a + b)
	}

	// 偶数・偶数 - 逆
	// 偶数・奇数 - 正
	// 奇数・偶数 - 正
	// 奇数・奇数 - 逆
	// n := 11
	// k := 7
	// a := []int{}
	// for i := 0; i < n; i++ {
	// 	a = append(a, i+1)
	// }

	// for i := 0; i < n-k+1; i++ {
	// 	x := i
	// 	y := i + k - 1
	// 	for x <= y {
	// 		a[x], a[y] = a[y], a[x]
	// 		x++
	// 		y--
	// 	}
	// }

	// stdout.Println(a)
}

func main() {
	stdout := NewStdout()
	defer stdout.Flush()
	exec(NewStdin(bufio.ScanWords), stdout)
}

type Stdin struct {
	stdin *bufio.Scanner
}

func NewStdin(split bufio.SplitFunc) *Stdin {
	s := Stdin{bufio.NewScanner(os.Stdin)}
	s.stdin.Split(split)
	s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), INFINITY)
	return &s
}

func (s *Stdin) Read() string {
	s.stdin.Scan()
	return s.stdin.Text()
}

func (s *Stdin) ReadInt() int {
	n, _ := strconv.Atoi(s.Read())
	return n
}

func (s *Stdin) ReadFloat64() float64 {
	n, _ := strconv.ParseFloat(s.Read(), 64)
	return n
}

type Stdout struct {
	stdout *bufio.Writer
}

func NewStdout() *Stdout {
	return &Stdout{bufio.NewWriter(os.Stdout)}
}

func (s *Stdout) Flush() {
	s.stdout.Flush()
}

func (s *Stdout) Println(a ...interface{}) {
	fmt.Fprintln(s.stdout, a...)
}

func Min(a int, b ...int) int {
	for _, v := range b {
		if v < a {
			a = v
		}
	}
	return a
}

func Max(a int, b ...int) int {
	for _, v := range b {
		if a < v {
			a = v
		}
	}
	return a
}

func Abs(x int) int {
	if x > 0 {
		return x
	} else {
		return x * -1
	}
}

func Pow(x, y int) int {
	z := 1
	for y > 0 {
		if y%2 == 0 {
			x *= x
			y /= 2
		} else {
			z *= x
			y -= 1
		}
	}
	return z
}

func CreateMatrix(x, y int) [][]int {
	matrix := make([][]int, x)
	for i := 0; i < x; i++ {
		matrix[i] = make([]int, y)
	}
	return matrix
}
0