結果
| 問題 |
No.723 2つの数の和
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-08-20 23:40:36 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 272 bytes |
| コンパイル時間 | 2,316 ms |
| コンパイル使用メモリ | 200,728 KB |
| 最終ジャッジ日時 | 2025-01-07 14:23:57 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 6 WA * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n,x;cin>>n>>x;
map<int,int> mp;
int ans=0;
for (int i=0;i<n;i++) {
int a;cin>>a;
ans+=mp[x-a];
mp[a]++;
}
cout<<ans<<endl;
return 0;
}