結果

問題 No.723 2つの数の和
ユーザー focusfocus
提出日時 2018-08-12 16:10:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 63,668 KB
実行使用メモリ 5,256 KB
最終ジャッジ日時 2023-10-24 16:17:46
合計ジャッジ時間 1,925 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,256 KB
testcase_01 AC 3 ms
5,256 KB
testcase_02 AC 3 ms
5,256 KB
testcase_03 WA -
testcase_04 AC 32 ms
5,256 KB
testcase_05 AC 28 ms
5,256 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 18 ms
5,256 KB
testcase_09 WA -
testcase_10 AC 14 ms
5,256 KB
testcase_11 AC 6 ms
5,256 KB
testcase_12 WA -
testcase_13 AC 32 ms
5,256 KB
testcase_14 AC 10 ms
5,256 KB
testcase_15 AC 16 ms
5,256 KB
testcase_16 AC 22 ms
5,256 KB
testcase_17 AC 27 ms
5,256 KB
testcase_18 AC 18 ms
5,256 KB
testcase_19 AC 34 ms
5,256 KB
testcase_20 AC 3 ms
5,256 KB
testcase_21 AC 3 ms
5,256 KB
testcase_22 AC 3 ms
5,256 KB
testcase_23 AC 31 ms
5,256 KB
testcase_24 AC 12 ms
5,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using ll = long long;
using namespace std;
int main(){
    ll a[100001]={},b[100001]={},n,x,ans=0;
    cin >> n >> x;
    for(ll i=0;i<n;i++){
            cin >> a[i];
            b[a[i]]++;
    }
    for(ll i=0;i<n;i++){
        if(x-a[i]<=100000)  ans+=b[x-a[i]];
    }
    cout << ans;
    return 0;
}
0