結果

問題 No.723 2つの数の和
ユーザー kanpurin002kanpurin002
提出日時 2018-11-13 23:30:56
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 267 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 28,168 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-08-26 00:58:50
合計ジャッジ時間 3,467 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 0 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 11 ms
4,376 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

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