結果

問題 No.369 足し間違い
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2017-09-24 20:20:58
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 79,012 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 07:20:42
合計ジャッジ時間 1,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

int main() {
    
    int N;
    cin >> N;
    long long s = 0;
    for ( int i = 0; i < N; i++ ) {
        long long a;
        cin >> a;
        s += a;
    }
    long long v;
    cin >> v;
    
    cout << s - v << endl;
    
    return 0;
}
0