結果

問題 No.723 2つの数の和
ユーザー tadanoningen
提出日時 2020-10-06 12:30:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 69,364 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 01:06:51
合計ジャッジ時間 2,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

using namespace std;

int main(){
    int n,x;
    cin >> n >> x;
    int a[n];
    for(int i=0;i < n;i++){
        cin >> a[i];
    }
    
    int c[n];
    
    for(int i=0;i < n;i++){
        c[i] = x - a[i];
    }
    
    sort(c,c+n);
    
    int ans = 0;
    
    for(int i=0;i < n;i++){
        if(binary_search(c,c+n,a[i])) ans++;
    }
    cout << ans << endl;
    return 0;
}
0