結果

問題 No.723 2つの数の和
ユーザー 37zigen37zigen
提出日時 2018-08-03 22:47:18
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 63,508 KB
最終ジャッジ日時 2024-09-19 17:33:28
合計ジャッジ時間 13,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
45,080 KB
testcase_01 AC 132 ms
45,248 KB
testcase_02 AC 135 ms
45,456 KB
testcase_03 AC 591 ms
52,116 KB
testcase_04 AC 565 ms
52,236 KB
testcase_05 AC 564 ms
52,108 KB
testcase_06 AC 553 ms
52,476 KB
testcase_07 AC 451 ms
52,432 KB
testcase_08 AC 467 ms
51,780 KB
testcase_09 AC 600 ms
52,324 KB
testcase_10 AC 416 ms
52,144 KB
testcase_11 AC 242 ms
49,756 KB
testcase_12 AC 498 ms
52,104 KB
testcase_13 AC 591 ms
52,280 KB
testcase_14 AC 341 ms
51,468 KB
testcase_15 AC 459 ms
51,800 KB
testcase_16 AC 489 ms
52,164 KB
testcase_17 AC 547 ms
52,272 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
45,092 KB
testcase_21 AC 128 ms
45,160 KB
testcase_22 AC 130 ms
45,128 KB
testcase_23 AC 518 ms
51,828 KB
testcase_24 AC 382 ms
51,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int[] cnt = new int[1000001];
		int n = sc.nextInt();
		int x = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextInt();
			cnt[a[i]]++;
		}
		int ans = 0;
		for (int i = 0; i < n; ++i) {
			if (x - a[i] < 0 || x - a[i] >= cnt.length)
				continue;
			ans += cnt[x - a[i]];
		}
		System.out.println(ans);
	}
}
0