Submission #25642488


Source Code Expand

Copy
package main
import (
"bufio"
"fmt"
"os"
"strconv"
)
func main() {
defer w.Flush()
// Implement from here
q := ni()
deq := make([]int, q)
var l, r int
for i := 0; i < q; i++ {
t, x := ni(), ni()
switch t {
case 1:
l = (l + q - 1) % q
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
package main

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

func main() {
	defer w.Flush()

	// Implement from here
	q := ni()
	deq := make([]int, q)
	var l, r int
	for i := 0; i < q; i++ {
		t, x := ni(), ni()
		switch t {
		case 1:
			l = (l + q - 1) % q
			deq[l] = x
		case 2:
			deq[r] = x
			r++
		case 3:
			out(deq[(l+x-1)%q])
		}
	}
}

// IO Utils
var (
	sc = bufio.NewScanner(os.Stdin)
	w  = bufio.NewWriter(os.Stdout)
)

const (
	initBufSize = 1024 * 1024
	maxBufSize  = 1024 * 1024 * 1024
)

func init() {
	buf := make([]byte, initBufSize)
	sc.Buffer(buf, maxBufSize)
	sc.Split(bufio.ScanWords)
}

func ns() string {
	sc.Scan()
	return sc.Text()
}

func ni() int {
	x, _ := strconv.Atoi(ns())
	return x
}

func nf() float64 {
	x, _ := strconv.ParseFloat(ns(), 64)
	return x
}

func nss(n int) []string {
	ret := make([]string, n)
	for i := 0; i < n; i++ {
		ret[i] = ns()
	}
	return ret
}

func nis(n int) []int {
	ret := make([]int, n)
	for i := 0; i < n; i++ {
		ret[i] = ni()
	}
	return ret
}

func nfs(n int) []float64 {
	ret := make([]float64, n)
	for i := 0; i < n; i++ {
		ret[i] = nf()
	}
	return ret
}

func out(x ...interface{}) {
	fmt.Fprintln(w, x...)
}

func Abs(x int) int {
	if x < 0 {
		x *= -1
	}
	return x
}

func Gcd(a, b int) int {
	for b != 0 {
		a, b = b, a%b
	}
	return a
}

func Lcm(a, b int) int {
	return a / Gcd(a, b) * b
}

func Max(a, b int) int {
	if a > b {
		return a
	}
	return b
}

func Maxs(x ...int) int {
	if len(x) <= 0 {
		return 0
	}
	ret := x[0]
	for _, v := range x {
		if ret < v {
			ret = v
		}
	}
	return ret
}

func Chmax(a *int, b int) bool {
	if *a < b {
		*a = b
		return true
	}
	return false
}

func Min(a, b int) int {
	if a < b {
		return a
	}
	return b
}

func Mins(x ...int) int {
	if len(x) <= 0 {
		return 0
	}
	ret := x[0]
	for _, v := range x {
		if ret > v {
			ret = v
		}
	}
	return ret
}

func Chmin(a *int, b int) bool {
	if *a > b {
		*a = b
		return true
	}
	return false
}

func NextPermutation(arr []int) bool {
	// calculate the left index to swap
	l := len(arr) - 2
	for l >= 0 && arr[l] >= arr[l+1] {
		l--
	}
	if l < 0 {
		return false
	}
	// calculate the right index to swap
	r := len(arr) - 1
	for arr[l] >= arr[r] {
		r--
	}
	// swap
	arr[l], arr[r] = arr[r], arr[l]
	// reverse elements between l and r
	for l, r = l+1, len(arr)-1; l < r; l, r = l+1, r-1 {
		arr[l], arr[r] = arr[r], arr[l]
	}
	return true
}

func Pow(base, exp int) int {
	if exp == 0 {
		return 1
	}
	res := Pow(base*base, exp/2)
	if exp&1 == 1 {
		res = res * base
	}
	return res
}

Submission Info

Submission Time
Task 061 - Deck(★2)
User numacci
Language Go (1.14.1)
Score 2
Code Size 2541 Byte
Status AC
Exec Time 37 ms
Memory 5188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 2 / 2
Status
AC × 3
AC × 19
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_1.txt, subtask_1_10.txt, subtask_1_11.txt, subtask_1_12.txt, subtask_1_13.txt, subtask_1_14.txt, subtask_1_15.txt, subtask_1_16.txt, subtask_1_2.txt, subtask_1_3.txt, subtask_1_4.txt, subtask_1_5.txt, subtask_1_6.txt, subtask_1_7.txt, subtask_1_8.txt, subtask_1_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 7 ms 1812 KB
sample_02.txt AC 2 ms 1792 KB
sample_03.txt AC 1 ms 1792 KB
subtask_1_1.txt AC 34 ms 5184 KB
subtask_1_10.txt AC 30 ms 4944 KB
subtask_1_11.txt AC 23 ms 3804 KB
subtask_1_12.txt AC 33 ms 4916 KB
subtask_1_13.txt AC 35 ms 4900 KB
subtask_1_14.txt AC 33 ms 4940 KB
subtask_1_15.txt AC 29 ms 4896 KB
subtask_1_16.txt AC 32 ms 4940 KB
subtask_1_2.txt AC 35 ms 4792 KB
subtask_1_3.txt AC 33 ms 3192 KB
subtask_1_4.txt AC 27 ms 5188 KB
subtask_1_5.txt AC 37 ms 4752 KB
subtask_1_6.txt AC 35 ms 3116 KB
subtask_1_7.txt AC 23 ms 3892 KB
subtask_1_8.txt AC 27 ms 3940 KB
subtask_1_9.txt AC 5 ms 2060 KB


2025-04-03 (Thu)
19:26:00 +00:00