結果

問題 No.723 2つの数の和
ユーザー donkorin_donkorin_
提出日時 2018-09-09 21:44:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 176,808 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-12-24 06:30:20
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 64 ms
9,344 KB
testcase_04 AC 83 ms
9,984 KB
testcase_05 AC 79 ms
10,368 KB
testcase_06 AC 76 ms
10,112 KB
testcase_07 AC 33 ms
7,424 KB
testcase_08 AC 39 ms
7,552 KB
testcase_09 AC 90 ms
11,008 KB
testcase_10 AC 31 ms
6,912 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 43 ms
8,192 KB
testcase_13 AC 87 ms
11,776 KB
testcase_14 AC 18 ms
6,012 KB
testcase_15 AC 35 ms
7,680 KB
testcase_16 AC 55 ms
9,344 KB
testcase_17 AC 72 ms
10,880 KB
testcase_18 AC 9 ms
5,248 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 59 ms
10,240 KB
testcase_24 AC 24 ms
6,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<(b);++i)
#define erep(i,a,b) for(int i=a;i<=(int)(b);++i)
#define per(i,a,b) for(int i=(a);i>(b);--i)
#define eper(i,a,b) for(int i=(a);i>=b;--i)
#define pb push_back
#define mp make_pair
#define INF (1<<30)-1
#define MOD 1000000007
#define all(x) (x).begin(),(x).end()
#define vii vector<int>
#define vll vector<long long>
using namespace std;
typedef long long ll;
typedef pair<int,int> Pii;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
int dy[]={0, 0, 1, -1};
int dx[]={1, -1, 0, 0};
int gcd(int a,int b){return b?gcd(b,a%b):a;}
int lcm(int a,int b){return a/gcd(a, b)*b;}

ll n, x, ans;
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
    cin >> n >> x;
    vll b(n);
    map<ll, int> a;
    rep(i, 0, n) {
        cin >> b[i];
        a[b[i]]++;
    }
    rep(i, 0, n) {
        ans += a[x-b[i]];
    }
    cout << ans << endl;
    return 0;
}
0