結果

問題 No.723 2つの数の和
ユーザー YamaKasaYamaKasa
提出日時 2018-08-04 12:21:53
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 59,612 KB
最終ジャッジ日時 2024-09-19 17:47:49
合計ジャッジ時間 12,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,916 KB
testcase_01 AC 118 ms
53,848 KB
testcase_02 AC 119 ms
54,076 KB
testcase_03 AC 529 ms
59,328 KB
testcase_04 AC 526 ms
59,612 KB
testcase_05 AC 487 ms
59,436 KB
testcase_06 AC 536 ms
59,300 KB
testcase_07 AC 415 ms
59,140 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 436 ms
59,100 KB
testcase_11 AC 233 ms
58,384 KB
testcase_12 AC 421 ms
59,344 KB
testcase_13 AC 563 ms
59,272 KB
testcase_14 AC 300 ms
57,808 KB
testcase_15 AC 424 ms
59,444 KB
testcase_16 AC 499 ms
59,392 KB
testcase_17 AC 518 ms
59,564 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 109 ms
54,132 KB
testcase_22 AC 121 ms
54,080 KB
testcase_23 AC 448 ms
57,836 KB
testcase_24 AC 327 ms
59,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int X = scan.nextInt();
		int l = 100001;
		int []a = new int[l];

		for(int i = 0; i < N; i++) {
			a[scan.nextInt()] ++;
		}
		scan.close();
		long ans = 0;
		for(int i = 1; i < l; i++) {
			int res = X - i;
			if(res >= 1 && res <= 100000) {
				ans += a[i] * a[res];
			}
		}
		System.out.println(ans);
	}
}
0