結果

問題 No.999 てん vs. ほむ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-02-28 22:40:29
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,259 bytes
コンパイル時間 17,325 ms
コンパイル使用メモリ 230,716 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-04-21 19:49:38
合計ジャッジ時間 16,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 23 ms
7,552 KB
testcase_18 AC 21 ms
7,552 KB
testcase_19 AC 22 ms
7,552 KB
testcase_20 AC 22 ms
7,552 KB
testcase_21 AC 28 ms
7,552 KB
testcase_22 AC 27 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func exec(stdin *Stdin, stdout *Stdout) {
	n := stdin.ReadInt()
	a := []int{}
	for i := 0; i < 2*n; i++ {
		a = append(a, stdin.ReadInt())
	}

	x1 := 0
	x2 := 2*n - 1
	ans := 0
	for i := 0; i < n; i++ {
		t1 := a[x1] - a[x1+1]
		t2 := a[x2] - a[x2-1]
		if t2 < t1 {
			ans += t1
			x1 += 2
		} else {
			ans += t2
			x2 -= 2
		}
	}
	stdout.Println(ans)

}

func main() {
	stdout := NewStdout()
	defer stdout.Flush()
	exec(NewStdin(bufio.ScanWords), stdout)
}

type Stdin struct {
	stdin *bufio.Scanner
}

func NewStdin(split bufio.SplitFunc) *Stdin {
	s := Stdin{bufio.NewScanner(os.Stdin)}
	s.stdin.Split(split)
	s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32))
	return &s
}

func (s *Stdin) Read() string {
	s.stdin.Scan()
	return s.stdin.Text()
}

func (s *Stdin) ReadInt() int {
	n, _ := strconv.Atoi(s.Read())
	return n
}

func (s *Stdin) ReadFloat64() float64 {
	n, _ := strconv.ParseFloat(s.Read(), 64)
	return n
}

type Stdout struct {
	stdout *bufio.Writer
}

func NewStdout() *Stdout {
	return &Stdout{bufio.NewWriter(os.Stdout)}
}

func (s *Stdout) Flush() {
	s.stdout.Flush()
}

func (s *Stdout) Println(a ...interface{}) {
	fmt.Fprintln(s.stdout, a...)
}
0