結果

問題 No.1169 Row and Column and Diagonal
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-14 21:33:40
言語 Go
(1.21.3)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,792 bytes
コンパイル時間 16,381 ms
コンパイル使用メモリ 199,408 KB
実行使用メモリ 7,824 KB
最終ジャッジ日時 2023-07-31 21:19:58
合計ジャッジ時間 18,216 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 4 ms
4,384 KB
testcase_07 AC 9 ms
4,380 KB
testcase_08 AC 15 ms
5,488 KB
testcase_09 AC 23 ms
5,500 KB
testcase_10 AC 41 ms
5,520 KB
testcase_11 AC 50 ms
7,592 KB
testcase_12 AC 56 ms
7,824 KB
testcase_13 AC 56 ms
7,820 KB
testcase_14 AC 51 ms
7,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	aa := makeGrid(n, n)
	for i := 0; i < n; i++ {
		for j := 0; j < n; j++ {
			aa[mod(i-j, n)][mod(i+j, n)] = i
		}
	}
	for i := 0; i < n; i++ {
		fmt.Fprint(writer, aa[i][0]+1)
		for j := 1; j < n; j++ {
			fmt.Fprint(writer, " ")
			fmt.Fprint(writer, aa[i][j]+1)
		}
		fmt.Fprintln(writer, "")
	}
}
func mod(i, n int) int {
	i %= n
	if i < 0 {
		return i + n
	}
	return i
}
func makeGrid(h, w int) [][]int {
	index := make([][]int, h, h)
	data := make([]int, h*w, h*w)
	for i := 0; i < h; i++ {
		index[i] = data[i*w : (i+1)*w]
	}
	return index
}
0