結果
| 問題 |
No.723 2つの数の和
|
| コンテスト | |
| ユーザー |
🍮かんプリン
|
| 提出日時 | 2019-02-23 18:08:15 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 12 ms / 2,000 ms |
| コード長 | 556 bytes |
| コンパイル時間 | 1,306 ms |
| コンパイル使用メモリ | 157,932 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-30 13:35:59 |
| 合計ジャッジ時間 | 2,318 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
int gcd(int a,int b){return b?gcd(b,a%b):a;}
ll a[100001];
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
ll n,b;
ll x;
ll c=0;
cin >> n >> x;
rep(i,n) {
cin >> b;
a[b]++;
}
rep(i,x+1) {
if (i>100000) break;
if (a[i]!=0) {
if (x-i<=100000 && a[x-i]>0) {
c+=a[x-i]*a[i];
}
}
}
cout << c << endl;
return 0;
}
🍮かんプリン