結果

問題 No.369 足し間違い
ユーザー shioyashioya
提出日時 2018-07-26 22:19:02
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 55,652 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 03:27:20
合計ジャッジ時間 897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main()
{
    long long int A,N,tmp_num;
    cin>>N;
    A=0;
    for(int i=0;i<N;i++){
        cin>>tmp_num;
        A+=tmp_num;
    }
    cin>>tmp_num;
    cout<<A-tmp_num<<endl;
    return 0;
}
0