結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ShimizudesShimizudes
提出日時 2018-07-06 20:08:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 51,076 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-13 18:14:47
合計ジャッジ時間 2,522 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:7: warning: ‘sum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   sum += a[i];
   ~~~~^~~~~~~

ソースコード

diff #

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(void) {
	long long n,sum,a[50000];
	
	cin >>n;
	
	for(int i=0;i<n; i++ )
	{
		cin >>a[i];
	}
		
	for(int i=0;i<n; i++ )
	{
		sum += a[i];
	}
	cout<<sum<<endl;
	return 0;
}
0