結果

問題 No.1389 Clumsy Calculation
ユーザー IKyoproIKyopro
提出日時 2021-02-13 15:24:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 202,484 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-20 18:14:30
合計ジャッジ時間 3,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 27 ms
6,400 KB
testcase_10 AC 13 ms
6,400 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 22 ms
6,400 KB
testcase_15 AC 24 ms
6,400 KB
testcase_16 AC 25 ms
6,272 KB
testcase_17 AC 23 ms
6,400 KB
testcase_18 AC 22 ms
6,272 KB
testcase_19 AC 22 ms
6,400 KB
testcase_20 AC 22 ms
6,400 KB
testcase_21 AC 22 ms
6,400 KB
testcase_22 AC 21 ms
6,400 KB
testcase_23 AC 22 ms
6,272 KB
testcase_24 AC 22 ms
6,400 KB
testcase_25 AC 22 ms
6,400 KB
testcase_26 AC 20 ms
6,400 KB
testcase_27 AC 21 ms
6,272 KB
testcase_28 AC 21 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;
template<class T> bool chmin(T& a,T b){if(a>b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a,T b){if(a<b) {a = b; return true;} return false;}
#define rep(i,n) for(int i=0;i<(n);i++)
#define drep(i,n) for(int i=(n)-1;i>=0;i--)
#define all(x) (x).begin(),(x).end()
#define debug(x)  cerr << #x << " = " << (x) << endl;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N,X;
    cin >> N >> X;
    vec<ll> A(N),S(N);
    rep(i,N){
        cin >> S[i];
        A[i] = X-S[i];
    }
    ll sum = accumulate(all(A),0LL);
    rep(i,N) if(S[i]%2==0){
        ll now = X-S[i]/2-A[i];
        if(sum+now==X){
            cout << S[i]/2 << "\n";
            return 0;
        }
    }
}
0