結果

問題 No.723 2つの数の和
ユーザー Mcpu3Mcpu3
提出日時 2018-08-19 17:18:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 61,020 KB
最終ジャッジ日時 2024-11-17 15:25:56
合計ジャッジ時間 13,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,184 KB
testcase_01 AC 138 ms
54,028 KB
testcase_02 AC 134 ms
53,836 KB
testcase_03 AC 569 ms
59,372 KB
testcase_04 AC 602 ms
59,164 KB
testcase_05 AC 580 ms
61,020 KB
testcase_06 AC 582 ms
58,988 KB
testcase_07 AC 441 ms
59,468 KB
testcase_08 AC 489 ms
59,160 KB
testcase_09 AC 650 ms
59,308 KB
testcase_10 AC 466 ms
59,392 KB
testcase_11 AC 253 ms
57,588 KB
testcase_12 AC 489 ms
59,296 KB
testcase_13 AC 594 ms
59,680 KB
testcase_14 AC 345 ms
59,188 KB
testcase_15 AC 482 ms
59,168 KB
testcase_16 AC 517 ms
59,168 KB
testcase_17 AC 585 ms
59,272 KB
testcase_18 AC 543 ms
59,184 KB
testcase_19 AC 567 ms
58,964 KB
testcase_20 AC 136 ms
53,684 KB
testcase_21 AC 136 ms
53,892 KB
testcase_22 AC 135 ms
54,048 KB
testcase_23 AC 537 ms
59,156 KB
testcase_24 AC 393 ms
59,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),x=sc.nextInt(),a[]=new int[100000],t[]=new int[100001],i;
		long s=0;
		for(i=0;i<n;i++) {
			a[i]=sc.nextInt();
			t[a[i]]++;
		}
		sc.close();
		for(i=0;i<n;i++) if(x-a[i]>=0&&100000>=x-a[i]) s+=t[x-a[i]];
		System.out.print(s);
	}
}
0