← Home
For problem statement at 2000-2999/2100-2199/2120-2129/2129/problemC3.txt this is a correct solution, but verifier at 2000-2999/2100-2199/2120-2129/2129/verifierC3.go ends with All 50 tests passed can you fix the verifier? package main

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

func main() {
	in := bufio.NewReaderSize(os.Stdin, 1<<20)
	out := bufio.NewWriterSize(os.Stdout, 1<<20)
	defer out.Flush()

	var t int
	fmt.Fscan(in, &t)
	for ; t > 0; t-- {
		var n int
		var s string
		fmt.Fscan(in, &n, &s)
		fmt.Fprintln(out, s)
	}
}