結果
問題 | No.723 2つの数の和 |
ユーザー | yuruhiya |
提出日時 | 2019-02-05 18:07:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,175 bytes |
コンパイル時間 | 679 ms |
コンパイル使用メモリ | 96,808 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 23:14:31 |
合計ジャッジ時間 | 5,801 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 20 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 22 ms
5,376 KB |
testcase_07 | AC | 11 ms
5,376 KB |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | AC | 24 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 14 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 26 ms
5,376 KB |
testcase_24 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <vector> #include <string> #include <array> #include <queue> #include <deque> #include <set> #include <list> #include <map> #include <stack> #include <utility> #include <algorithm> #include <numeric> #include <cstdio> #include <cstdlib> #include <cmath> #include <cctype> #include <cstring> #include <climits> #include <bitset> #include <random> #include <functional> #include <sstream> #include <iomanip> using namespace std; #define rep(i, n) for(int i=0; i<(n); i++) #define FOR(i, m, n) for(int i=(m);i<(n);i++) #define sz(x) ((int)(x).size()) #define all(x) (x).begin(),(x).end() #define SORT(x) sort((x).begin(),(x).end()) #define REVE(x) reverse((x).begin(),(x).end()) #define mp make_pair #define pb push_back typedef vector<int> VI; typedef vector<string> VS; typedef vector<vector<int>> VVI; typedef pair<int, int> PII; typedef long long LL; int main() { int n, x; cin >> n >> x; VI a(100010); rep(i, n) { int m; cin >> m; a[m]++; } LL ans = 0; rep(i, x + 1) { if (0 <= x - i && x - i <= 100000) { int p = a[i] * a[x - i]; ans += p; } } cout << ans << endl; }