結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー あせるねこあせるねこ
提出日時 2021-04-21 00:37:05
言語 Go
(1.22.1)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 12,816 ms
コンパイル使用メモリ 244,012 KB
実行使用メモリ 13,676 KB
最終ジャッジ日時 2024-07-04 05:36:05
合計ジャッジ時間 22,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 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 16 ms
5,376 KB
testcase_07 AC 144 ms
5,376 KB
testcase_08 AC 702 ms
5,888 KB
testcase_09 AC 523 ms
6,144 KB
testcase_10 AC 895 ms
11,640 KB
testcase_11 AC 916 ms
11,224 KB
testcase_12 AC 1,017 ms
12,336 KB
testcase_13 AC 1,057 ms
11,432 KB
testcase_14 AC 978 ms
13,608 KB
testcase_15 AC 979 ms
13,676 KB
testcase_16 AC 1,105 ms
13,608 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	var n int
	fmt.Scan(&n)
	var a []int
	for i := 0; i < n; i++ {
		a = append(a, 0)
		fmt.Scan(&a[i])
	}
	var sum int
	for _, num := range a {
		sum += num
	}
	fmt.Println(sum)
}
0