結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,272 KB
testcase_01 AC 3 ms
5,272 KB
testcase_02 AC 3 ms
5,272 KB
testcase_03 WA -
testcase_04 AC 31 ms
5,272 KB
testcase_05 AC 26 ms
5,272 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 15 ms
5,272 KB
testcase_09 WA -
testcase_10 AC 13 ms
5,272 KB
testcase_11 AC 5 ms
5,272 KB
testcase_12 WA -
testcase_13 AC 32 ms
5,272 KB
testcase_14 AC 10 ms
5,272 KB
testcase_15 AC 15 ms
5,272 KB
testcase_16 AC 20 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++){
        if(x-a[i]<=100000)  ans+=b[x-a[i]];
    }
    cout << ans << endl;
    return 0;
}
0