結果

問題 No.851 テストケース
ユーザー urutomurutom
提出日時 2022-11-02 11:34:10
言語 Go
(1.22.1)
結果
RE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 12,802 ms
コンパイル使用メモリ 210,868 KB
実行使用メモリ 4,360 KB
最終ジャッジ日時 2023-09-23 18:37:45
合計ジャッジ時間 14,689 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

const MaxInt = math.MaxInt64

var scanner *bufio.Scanner

func main() {
	var n int
	a := make([]int, n)
	readCount, _ := fmt.Scanf("%d\n%d %d %d", &n, &a[0], &a[1], &a[2])
	if readCount == 4 {
		fmt.Println("assert")
		return
	}
	for i := 1; i < 3; i++ {
		fmt.Scanln(&a[i])
	}
	sum := make([]int, 0)
	for i := 0; i < 2; i++ {
		for j := i + 1; j < 3; j++ {
			sum = append(sum, a[i]+a[j])
		}
	}
	sort.Ints(sum)
	max := sum[len(sum)-1]
	for i := len(sum) - 2; i >= 0; i-- {
		if sum[i] != max {
			fmt.Println(sum[i])
			return
		}
	}
}

func init() {
	scanner = bufio.NewScanner(os.Stdin)
	scanner.Buffer([]byte{}, MaxInt)
	scanner.Split(bufio.ScanWords)
}

func Int() int {
	scanner.Scan()
	ret, _ := strconv.ParseInt(scanner.Text(), 10, 0)
	return int(ret)
}

func Ints(n int) []int {
	ret := make([]int, n)
	for i := 0; i < n; i++ {
		ret[i] = Int()
	}
	return ret
}

func Max(a, b int) int {
	if a < b {
		return b
	}
	return a
}

func Min(a, b int) int {
	if a < b {
		return a
	}
	return b
}
0