結果

問題 No.723 2つの数の和
ユーザー umezoumezo
提出日時 2020-09-16 04:53:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 208,936 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-22 03:01:41
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 65 ms
8,832 KB
testcase_04 AC 98 ms
9,600 KB
testcase_05 AC 97 ms
9,984 KB
testcase_06 AC 88 ms
9,600 KB
testcase_07 AC 34 ms
6,940 KB
testcase_08 AC 42 ms
7,296 KB
testcase_09 AC 87 ms
8,704 KB
testcase_10 AC 40 ms
6,944 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 46 ms
7,296 KB
testcase_13 AC 122 ms
11,264 KB
testcase_14 AC 26 ms
6,940 KB
testcase_15 AC 49 ms
7,680 KB
testcase_16 AC 75 ms
9,216 KB
testcase_17 AC 101 ms
10,496 KB
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 33 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 75 ms
9,856 KB
testcase_24 AC 32 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

int main(){
  ll n,x;
  cin>>n>>x;
  
  map<ll,ll> m;
  ll y;
  rep(i,n){
    cin>>y;
    m[y]++;
  }
  
  ll sum=0;
  for(auto t:m){
    if(t.first>2*x) break;
    else sum+=t.second*m[x-t.first];
  }
  cout<<sum<<endl;
  return 0;
}
0