結果

問題 No.1231 Make a Multiple of Ten
ユーザー ccppjsrbccppjsrb
提出日時 2020-09-18 21:41:56
言語 Go
(1.22.1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,792 bytes
コンパイル時間 11,707 ms
コンパイル使用メモリ 215,944 KB
実行使用メモリ 23,888 KB
最終ジャッジ日時 2023-09-05 18:12:37
合計ジャッジ時間 13,095 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 27 ms
14,032 KB
testcase_05 AC 23 ms
11,968 KB
testcase_06 AC 9 ms
7,576 KB
testcase_07 AC 28 ms
14,036 KB
testcase_08 AC 13 ms
9,656 KB
testcase_09 AC 6 ms
4,796 KB
testcase_10 AC 24 ms
11,976 KB
testcase_11 AC 29 ms
14,048 KB
testcase_12 AC 57 ms
22,812 KB
testcase_13 AC 59 ms
23,876 KB
testcase_14 AC 1 ms
4,504 KB
testcase_15 AC 61 ms
23,888 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)
	dp := makeGrid(n+1, 10)
	dp[0][0] = 1
	for i := 0; i < n; i++ {
		a := getNextInt(scanner)
		a %= 10
		for j := 0; j < 10; j++ {
			if dp[i][j] == 0 {
				continue
			}
			dp[i+1][j] = max(dp[i+1][j], dp[i][j])
			dp[i+1][(j+a)%10] = max(dp[i+1][(j+a)%10], dp[i][j]+1)
		}
	}
	fmt.Fprintln(writer, dp[n][0]-1)
}
func max(a, b int) int {
	if a < b {
		return b
	}
	return a
}
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