結果

提出番号 62
提出者 Yakimeshi
言語 C++
提出日時 2017-05-23 17:21:27
問題名 (3)足すだけ(Easy)
結果 WA
点数 0%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 2ms 8720KB
2 AC 100% 2ms 8064KB
3 WA 0% 6ms 8688KB
4 WA 0% 7ms 8704KB
5 WA 0% 8ms 7824KB
6 WA 0% 6ms 8704KB
7 WA 0% 8ms 8112KB
8 WA 0% 7ms 8704KB
9 WA 0% 8ms 7536KB
10 RE 0% 7ms 8080KB

ソースコード

#include "bits/stdc++.h"
using namespace std;

int numbers=0;
int n;
int x;
int i;

int main(){

cin>>n;


for(i=0;i<n;i++){
cin>>x;
numbers+=x;
}

cout<<numbers<<endl;

return 0;

}