結果

問題 No.723 2つの数の和
ユーザー umezoumezo
提出日時 2020-09-16 04:59:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 199,240 KB
最終ジャッジ日時 2025-01-14 15:11:55
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 66 ms
9,088 KB
testcase_04 AC 105 ms
9,728 KB
testcase_05 AC 95 ms
10,368 KB
testcase_06 AC 83 ms
9,984 KB
testcase_07 AC 33 ms
7,040 KB
testcase_08 AC 40 ms
7,808 KB
testcase_09 AC 76 ms
8,960 KB
testcase_10 AC 36 ms
7,168 KB
testcase_11 AC 7 ms
6,824 KB
testcase_12 AC 52 ms
7,552 KB
testcase_13 AC 119 ms
11,648 KB
testcase_14 AC 28 ms
6,820 KB
testcase_15 AC 51 ms
7,936 KB
testcase_16 AC 74 ms
9,472 KB
testcase_17 AC 96 ms
10,752 KB
testcase_18 AC 11 ms
6,820 KB
testcase_19 AC 15 ms
6,820 KB
testcase_20 AC 2 ms
6,824 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 67 ms
9,984 KB
testcase_24 AC 33 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |     scanf("%lld", &y);
      |     ~~~~~^~~~~~~~~~~~

ソースコード

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(){
  int n,x;
  cin>>n>>x;
  
  map<int,ll> m;
  rep(i,n){
    ll y;
    scanf("%lld", &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