結果
問題 | No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | Leonardone |
提出日時 | 2017-07-12 09:09:11 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 52 ms / 3,000 ms |
コード長 | 1,829 bytes |
コンパイル時間 | 13,867 ms |
コンパイル使用メモリ | 236,376 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-06-07 12:46:05 |
合計ジャッジ時間 | 14,408 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 18 ms
6,656 KB |
testcase_10 | AC | 45 ms
12,544 KB |
testcase_11 | AC | 48 ms
12,800 KB |
testcase_12 | AC | 50 ms
13,056 KB |
testcase_13 | AC | 51 ms
13,056 KB |
testcase_14 | AC | 47 ms
12,928 KB |
testcase_15 | AC | 48 ms
12,928 KB |
testcase_16 | AC | 52 ms
13,056 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
ソースコード
// // author: Leonardone @ NEETSDKASU package main import ( "bufio"; "fmt"; "os"; "strconv"; "strings" ) func atoi(s string) int { v, _ := strconv.Atoi(s); return v } func atou(s string) uint64 { v, _ := strconv.ParseUint(s, 10, 64); return v } func atof(s string) float64 { v, _ := strconv.ParseFloat(s, 64); 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 (_ = fmt.Println; _red = bufio.NewScanner(os.Stdin); _tok []string) func init() { _red.Buffer(make([]byte, 1e7), 1e7) } func gettok() (t string, e bool) { if len(_tok) == 0 { if !_red.Scan() { return }; _tok = strings.Split(_red.Text(), " ") } 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 *uint64: t, _ := gettok(); *v = atou(t) case *float64: t, _ := gettok(); *v = atof(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 *[]uint64: if len(*v) == 0 { for { t, e := gettok(); *v = append(*v, atou(t)); if e { break } } } else { for j := range *v { t, _ := gettok(); (*v)[j] = atou(t) } } case *[]float64: if len(*v) == 0 { for { t, e := gettok(); *v = append(*v, atof(t)); if e { break } } } else { for j := range *v { t, _ := gettok(); (*v)[j] = atof(t) } } case *[]string: if len(*v) == 0 { *v = append(*v, _tok...); _tok = _tok[:0] } else { for j := range *v { (*v)[j], _ = gettok() } } } } } func main() { var n int read(&n) xs := make([]uint64, n) read(&xs) sum := uint64(0) for _, x := range xs { sum += x } fmt.Println(sum) }