結果

問題 No.369 足し間違い
ユーザー r2en_r2en_
提出日時 2017-03-03 01:16:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 63,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-13 02:10:35
合計ジャッジ時間 1,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(void){
    int n;
    int sum = 0;
    long long v = 0;
    int *A;
    cin >> n;
    A = new int[n];
    for(int i=0;i<n;i++){
        cin >> A[i];
        sum += A[i];
    }
    cin >> v;
    cout << sum - v << endl;
    return(0);
}
0