結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,704 KB
testcase_01 AC 2 ms
8,704 KB
testcase_02 AC 1 ms
8,704 KB
testcase_03 AC 1,974 ms
8,704 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 543 ms
8,704 KB
testcase_08 AC 736 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 511 ms
10,496 KB
testcase_11 AC 25 ms
5,248 KB
testcase_12 AC 948 ms
5,248 KB
testcase_13 TLE -
testcase_14 AC 194 ms
5,248 KB
testcase_15 AC 596 ms
5,248 KB
testcase_16 AC 1,377 ms
5,248 KB
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 284 ms
8,832 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 = i; j < N; j++)
		{
			if (in[i] + in[j] == X)
			{
				if (i == j)
					ans++;
				else
					ans += 2;
			}
		}
	}

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


	delete[] in;
	return 0;
}
0