結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2017-07-12 04:48:42
言語 Go
(1.22.1)
結果
AC  
実行時間 1,190 ms / 2,000 ms
コード長 1,296 bytes
コンパイル時間 17,225 ms
コンパイル使用メモリ 239,492 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-16 17:15:19
合計ジャッジ時間 22,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 165 ms
5,376 KB
testcase_08 AC 767 ms
5,376 KB
testcase_09 AC 567 ms
6,016 KB
testcase_10 AC 951 ms
9,472 KB
testcase_11 AC 980 ms
9,472 KB
testcase_12 AC 999 ms
9,984 KB
testcase_13 AC 1,035 ms
9,984 KB
testcase_14 AC 1,062 ms
9,984 KB
testcase_15 AC 1,078 ms
10,476 KB
testcase_16 AC 1,190 ms
11,008 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// author: Leonardone @ NEETSDKASU
package main

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

func atoi(s string) int { v, _ := strconv.Atoi(s); return v }
func max(a, b int) int { if a > b { return a }; return b }
func min(a, b int) int { if a < b { return a }; return b }

var _red = bufio.NewScanner(os.Stdin)
var _tok []string

func gettok() (t string, e bool) {
	if len(_tok) == 0 {
		if !_red.Scan() { return }
		_tok = strings.Split(_red.Text(), " ")
        println(len(_tok))
	}
	t = _tok[0]; _tok = _tok[1:]; e = len(_tok) == 0
	return
}

func read(vs ...interface{}) {
	for _, v := range vs {
		switch v := v.(type) {
		case *int: t, _ := gettok(); *v = atoi(t)
		case *string: *v, _ = gettok()
		case *[]int:
			if len(*v) == 0 {
				for { t, e := gettok(); *v = append(*v, atoi(t)); if e { break } }
			} else {
				for j := range *v { t, _ := gettok(); (*v)[j] = atoi(t) }
			}
		case *[]string:
			if len(*v) == 0 {
				for { t, e := gettok(); *v = append(*v, t); if e { break } }
			} else {
				for j := range *v { (*v)[j], _ = gettok() }
			}
		}
	}
}

func main() {
    var n int
    fmt.Scan(&n)
    xs := make([]int, n)
    for i := range xs {
        fmt.Scan(&xs[i])
    }
    sum := 0
    for _, x := range xs {
        sum += x
    }
    fmt.Println(sum)
}
0