結果

問題 No.1389 Clumsy Calculation
ユーザー 🍮かんプリン
提出日時 2021-02-12 21:22:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 165,324 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 20:04:50
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.02.12 21:22:00
**/

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

int main() {
    ll n,x;cin >> n >> x;
    ll total = 0;
    for (int i = 0; i < n; i++) {
        int s;cin >> s;
        total += s;
    }
    total -= (n-1)*x;
    cout << total << endl;
    return 0;
}
0