結果

問題 No.723 2つの数の和
ユーザー xxxasdfghjkxxxasdfghjk
提出日時 2018-08-12 13:20:07
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-24 07:06:32
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 71 ms
9,344 KB
testcase_04 AC 103 ms
10,112 KB
testcase_05 AC 94 ms
10,368 KB
testcase_06 AC 86 ms
9,984 KB
testcase_07 AC 38 ms
7,236 KB
testcase_08 AC 42 ms
7,552 KB
testcase_09 WA -
testcase_10 AC 35 ms
6,940 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 50 ms
8,320 KB
testcase_13 AC 106 ms
11,648 KB
testcase_14 AC 23 ms
6,940 KB
testcase_15 AC 41 ms
7,680 KB
testcase_16 AC 64 ms
9,344 KB
testcase_17 AC 85 ms
10,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 76 ms
10,240 KB
testcase_24 AC 28 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<queue>
#include<utility>
#include<cstring>
#include<stack>
#include<algorithm>
#include<cmath>
#include<iostream>
#include<map>
#define MAX_N 100001
#define INF_INT 2147483647
#define INF_LL 9223372036854775807
#define REP(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
bool cmp_P(const P &a,const P &b){
  return a.second < b.second;
}
int main()
{
  ll N,X,res=0;
  cin >> N >> X;
  vector<ll> a(N+1);
  map<ll,ll> mp;
  REP(i,N){
    cin >> a[i];
    mp[a[i]]++;
    if(X - a[i] == a[i])
      res += mp[X-a[i]];
    else
      res += 2*mp[X-a[i]];
    
  }
  cout << res << endl;
  return 0;
}

0