結果

問題 No.723 2つの数の和
ユーザー saitam05014081saitam05014081
提出日時 2018-08-18 20:49:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 86,452 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-11-06 21:16:39
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,136 KB
testcase_01 AC 9 ms
11,136 KB
testcase_02 AC 9 ms
11,136 KB
testcase_03 AC 30 ms
11,776 KB
testcase_04 AC 37 ms
11,776 KB
testcase_05 AC 34 ms
11,776 KB
testcase_06 AC 36 ms
12,032 KB
testcase_07 AC 21 ms
11,520 KB
testcase_08 AC 22 ms
11,520 KB
testcase_09 AC 37 ms
11,904 KB
testcase_10 AC 20 ms
11,264 KB
testcase_11 AC 11 ms
11,264 KB
testcase_12 AC 25 ms
11,520 KB
testcase_13 AC 38 ms
11,904 KB
testcase_14 AC 16 ms
11,520 KB
testcase_15 AC 21 ms
11,520 KB
testcase_16 AC 28 ms
11,648 KB
testcase_17 AC 33 ms
11,776 KB
testcase_18 AC 24 ms
11,904 KB
testcase_19 AC 40 ms
12,032 KB
testcase_20 AC 9 ms
11,136 KB
testcase_21 AC 8 ms
11,264 KB
testcase_22 AC 8 ms
11,264 KB
testcase_23 AC 37 ms
11,904 KB
testcase_24 AC 17 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <complex>
#include <stack>
#include <queue>
#include <list>
#include <unordered_map>
#include <utility>
#include <map>
#include <set>
using namespace std;

int main(){
    long long int n, x;
    cin >> n >> x;
    long long int data[1000010];
    long long int nums[n];
    long long int i;
    long long int ans = 0;
    
    for(i = 0; i < 1000010; i++){
        data[i] = 0;
    }
    
    int a;
    for(i = 0; i < n; i++){
        cin >> a;
        nums[i] = a;
        data[a] += 1;
    }
    
    for(i = 0; i < n; i++){
        if(x-nums[i] >= 0 && x-nums[i]<1000010){
            ans += data[x-nums[i]];
        }
    }
    
    cout << ans << endl;
}
0