結果

問題 No.1389 Clumsy Calculation
ユーザー khmonoskhmonos
提出日時 2021-02-12 21:34:47
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 65,660 KB
最終ジャッジ日時 2025-01-18 18:06:45
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    int n, x;
    int sum = 0;
    
    std::cin >> n >> x;
    for (int i = 0; i < n; i++) {
        int a;
        std::cin >> a;
        sum += (x - a);
    }
    std::cout << (x - sum) << std::endl;
    
    return 0;
}
0