結果

問題 No.2835 Take and Flip
ユーザー ID 21712ID 21712
提出日時 2024-11-04 22:10:10
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 156 bytes
コンパイル時間 11,505 ms
コンパイル使用メモリ 226,140 KB
実行使用メモリ 8,080 KB
最終ジャッジ日時 2024-11-04 22:11:00
合計ジャッジ時間 48,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1 ms
6,816 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,866 ms
8,080 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 858 ms
7,832 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1,401 ms
7,956 KB
testcase_17 AC 143 ms
6,820 KB
testcase_18 AC 1,678 ms
7,944 KB
testcase_19 TLE -
testcase_20 AC 758 ms
7,836 KB
testcase_21 AC 1,974 ms
8,076 KB
testcase_22 AC 1,433 ms
7,952 KB
testcase_23 AC 668 ms
7,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n int
	Scan(&n)
	a:=make([]int64,n)
	var c int64
	for i:=range a {
		Scan(&a[i])
		c+=a[i]
	}
	Println(c)
}
0