結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 3 ms
4,376 KB
testcase_06 AC 20 ms
4,376 KB
testcase_07 AC 170 ms
4,376 KB
testcase_08 AC 799 ms
7,916 KB
testcase_09 AC 577 ms
8,056 KB
testcase_10 AC 1,006 ms
12,168 KB
testcase_11 AC 1,016 ms
13,380 KB
testcase_12 AC 1,044 ms
12,140 KB
testcase_13 AC 1,057 ms
12,100 KB
testcase_14 AC 1,093 ms
14,348 KB
testcase_15 AC 1,128 ms
15,356 KB
testcase_16 AC 1,229 ms
13,840 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,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