結果

問題 No.723 2つの数の和
ユーザー koukonkokoukonko
提出日時 2018-08-23 23:11:39
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 440 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 60,936 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-29 14:58:26
合計ジャッジ時間 45,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,704 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 2 ms
8,832 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,453 ms
8,704 KB
testcase_08 AC 1,852 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 1,264 ms
8,704 KB
testcase_11 AC 62 ms
8,704 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 511 ms
8,704 KB
testcase_15 AC 1,569 ms
8,704 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 733 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>

typedef long long ll;
#define MIN(x, y) (x < y ? x : y)
#define MAX(x, y) (x > y ? x : y)

using namespace std;

int main(){
	int N, X;
	cin >> N >> X;

	int a[100000];
	for(int i = 0; i < N; ++i){
		cin >> a[i];
	}

	int count = 0;
	for(int i = 0; i < N; ++i){
		for(int j = 0; j < N; ++j){
			if(a[i] + a[j] == X){ count++; }
		}
	}

	cout << count << endl;
}
0