結果
| 問題 |
No.1618 Convolution?
|
| コンテスト | |
| ユーザー |
ccppjsrb
|
| 提出日時 | 2021-07-22 22:25:48 |
| 言語 | Go (1.23.4) |
| 結果 |
AC
|
| 実行時間 | 129 ms / 2,000 ms |
| コード長 | 2,306 bytes |
| コンパイル時間 | 18,169 ms |
| コンパイル使用メモリ | 226,496 KB |
| 実行使用メモリ | 13,828 KB |
| 最終ジャッジ日時 | 2024-07-17 18:29:48 |
| 合計ジャッジ時間 | 23,327 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
package main
import (
"bufio"
"fmt"
"io"
"os"
"strconv"
)
var iost *Iost
type Iost struct {
Scanner *bufio.Scanner
Writer *bufio.Writer
}
func NewIost(fp io.Reader, wfp io.Writer) *Iost {
const BufSize = 2000005
scanner := bufio.NewScanner(fp)
scanner.Split(bufio.ScanWords)
scanner.Buffer(make([]byte, BufSize), BufSize)
return &Iost{Scanner: scanner, Writer: bufio.NewWriter(wfp)}
}
func (i *Iost) Text() string {
if !i.Scanner.Scan() {
panic("scan failed")
}
return i.Scanner.Text()
}
func (i *Iost) Atoi(s string) int { x, _ := strconv.Atoi(s); return x }
func (i *Iost) GetNextInt() int { return i.Atoi(i.Text()) }
func (i *Iost) Atoi64(s string) int64 { x, _ := strconv.ParseInt(s, 10, 64); return x }
func (i *Iost) GetNextInt64() int64 { return i.Atoi64(i.Text()) }
func (i *Iost) Atof64(s string) float64 { x, _ := strconv.ParseFloat(s, 64); return x }
func (i *Iost) GetNextFloat64() float64 { return i.Atof64(i.Text()) }
func (i *Iost) Print(x ...interface{}) { fmt.Fprint(i.Writer, x...) }
func (i *Iost) Printf(s string, x ...interface{}) { fmt.Fprintf(i.Writer, s, x...) }
func (i *Iost) Println(x ...interface{}) { fmt.Fprintln(i.Writer, x...) }
func isLocal() bool { return os.Getenv("I") == "IronMan" }
func main() {
fp := os.Stdin
wfp := os.Stdout
if isLocal() {
fp, _ = os.Open(os.Getenv("END_GAME"))
}
iost = NewIost(fp, wfp)
defer func() {
if isLocal() {
iost.Println(recover())
}
iost.Writer.Flush()
}()
solve()
for i := 0; isLocal() && i < 100; i++ {
iost.Println("-----------------------------------")
solve()
}
}
func solve() {
n := iost.GetNextInt()
aa := make([]int, n+1)
bb := make([]int, n+1)
for i := 0; i < n; i++ {
aa[i+1] = iost.GetNextInt() + aa[i]
}
for i := 0; i < n; i++ {
bb[i+1] = iost.GetNextInt() + bb[i]
}
cc := make([]int, n*2+1)
for i := 1; i <= n; i++ {
cc[i] += aa[i]
cc[i] += bb[i]
}
for i := 1; i < n; i++ {
cc[n+i] += aa[n] - aa[i] - n*(aa[i]-aa[i-1])
cc[n+i] += bb[n] - bb[i] - n*(bb[i]-bb[i-1])
}
for i := 1; i < n*2; i++ {
cc[i] += cc[i-1]
}
for i := 0; i < n*2; i++ {
if i > 0 {
iost.Print(" ")
}
iost.Print(cc[i])
}
iost.Println("")
}
ccppjsrb