結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,272 KB
testcase_01 AC 3 ms
5,272 KB
testcase_02 AC 3 ms
5,272 KB
testcase_03 AC 23 ms
5,272 KB
testcase_04 AC 30 ms
5,272 KB
testcase_05 AC 27 ms
5,272 KB
testcase_06 AC 29 ms
5,272 KB
testcase_07 AC 14 ms
5,272 KB
testcase_08 AC 16 ms
5,272 KB
testcase_09 AC 29 ms
5,272 KB
testcase_10 AC 14 ms
5,272 KB
testcase_11 AC 5 ms
5,272 KB
testcase_12 AC 17 ms
5,272 KB
testcase_13 AC 30 ms
5,272 KB
testcase_14 AC 9 ms
5,272 KB
testcase_15 AC 15 ms
5,272 KB
testcase_16 AC 21 ms
5,272 KB
testcase_17 AC 26 ms
5,272 KB
testcase_18 AC 18 ms
5,272 KB
testcase_19 AC 33 ms
5,272 KB
testcase_20 AC 3 ms
5,272 KB
testcase_21 AC 3 ms
5,272 KB
testcase_22 AC 3 ms
5,272 KB
testcase_23 AC 31 ms
5,272 KB
testcase_24 AC 11 ms
5,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using ll = long long;
using namespace std;
int main(){
    ll a[101010]={},b[101010]={},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++){
        ll f = x-a[i];
        if(f<=100000&&f>=0)  ans+=b[f];
    }
    cout << ans << endl;
    return 0;
}
0