結果

問題 No.723 2つの数の和
ユーザー kanpurin002kanpurin002
提出日時 2018-11-13 21:50:58
言語 C
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 275 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 15,816 KB
最終ジャッジ日時 2024-12-24 13:29:02
合計ジャッジ時間 44,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
7,168 KB
testcase_02 AC 1 ms
7,168 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,392 ms
7,296 KB
testcase_08 AC 1,794 ms
8,740 KB
testcase_09 TLE -
testcase_10 AC 1,242 ms
8,744 KB
testcase_11 AC 61 ms
7,040 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 498 ms
7,296 KB
testcase_15 AC 1,544 ms
8,736 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 731 ms
8,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(){
	int n,x,i,j,count=0;
	scanf("%d%d",&n,&x);
	int a[n];
	for (i=0;i<n;i++) {
		scanf("%d",&a[i]);
	}
	for (i=0;i<n;i++) {
		for (j=0;j<n;j++) {
			if (x==a[i]+a[j]) {
				count++;
			}
		}
	}
	printf("%d\n",count);
	return 0;
}
0