結果

問題 No.3654 Cup Ramen
コンテスト
ユーザー くらげ
提出日時 2026-08-24 23:19:09
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0 + ACL)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 350µs
コード長 420 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,253 ms
コンパイル使用メモリ 350,940 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-30 13:03:36
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#include <cassert>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(n);i++)

int main(){
    int n, x;
    cin >> n >> x;
    assert(1<=n && n<=100);
    assert(0<=x && x<=10000);
    vector<int> a(n);
    rep(i,n){
        cin >> a[i];
        assert(0<=a[i] && a[i]<=1000);
    }

    int sum = 0;
    rep(i,n) sum += a[i];
    cout << (sum<=x? 0 : sum-x) << endl;

}
0