結果

問題 No.723 2つの数の和
ユーザー NacoNaco
提出日時 2019-09-20 14:38:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 177,236 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-09-14 04:41:58
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 43 ms
6,784 KB
testcase_04 AC 65 ms
8,448 KB
testcase_05 AC 63 ms
8,704 KB
testcase_06 AC 55 ms
7,168 KB
testcase_07 AC 25 ms
5,632 KB
testcase_08 AC 29 ms
5,888 KB
testcase_09 AC 56 ms
6,940 KB
testcase_10 AC 28 ms
6,272 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 32 ms
5,888 KB
testcase_13 AC 75 ms
9,728 KB
testcase_14 AC 18 ms
5,632 KB
testcase_15 AC 31 ms
6,912 KB
testcase_16 AC 48 ms
8,192 KB
testcase_17 AC 63 ms
8,832 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 64 ms
8,576 KB
testcase_24 AC 22 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

static const int MAX=1e5+1;

int N;
int X;
int a[MAX];

int main(){
    cin >> N >> X;
    for(int i=0;i<N;i++) cin >> a[i];
    sort(a,a+N);
    map<int,int> m;
    int ans=0;
    for(int i=0;i<N;i++){
        m[a[i]]++;
    }
    for(int i=0;i<N;i++){
        if(X-a[i]>=0){
            ans+=m[X-a[i]];
        }
    }
    cout << ans << endl;
}
0