結果

問題 No.723 2つの数の和
ユーザー lunnearlunnear
提出日時 2018-11-13 14:47:54
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 326 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 54,360 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-12-24 13:13:47
合計ジャッジ時間 44,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,144 KB
testcase_01 AC 2 ms
8,704 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,397 ms
10,496 KB
testcase_08 AC 1,823 ms
8,704 KB
testcase_09 TLE -
testcase_10 AC 1,241 ms
8,576 KB
testcase_11 AC 64 ms
10,496 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 492 ms
10,404 KB
testcase_15 AC 1,503 ms
10,272 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 727 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

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

	int *in = new int[N];
	for(int i = 0; i < N; i++)
		std::cin >> in[i];

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

	std::cout << ans << std::endl;


	delete[] in;
	return 0;
}
0