結果

問題 No.723 2つの数の和
ユーザー 37zigen37zigen
提出日時 2018-08-03 22:46:19
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 489 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 52,376 KB
最終ジャッジ日時 2024-09-19 17:33:07
合計ジャッジ時間 12,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
45,088 KB
testcase_01 AC 103 ms
44,956 KB
testcase_02 AC 118 ms
45,248 KB
testcase_03 AC 542 ms
52,284 KB
testcase_04 AC 549 ms
52,320 KB
testcase_05 AC 505 ms
52,200 KB
testcase_06 AC 529 ms
52,232 KB
testcase_07 AC 419 ms
52,188 KB
testcase_08 AC 403 ms
51,772 KB
testcase_09 AC 537 ms
52,368 KB
testcase_10 AC 428 ms
52,068 KB
testcase_11 AC 231 ms
50,144 KB
testcase_12 AC 476 ms
52,156 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 107 ms
44,940 KB
testcase_21 AC 117 ms
44,948 KB
testcase_22 AC 121 ms
45,220 KB
testcase_23 AC 477 ms
51,784 KB
testcase_24 AC 355 ms
51,988 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)
				continue;
			ans += cnt[x - a[i]];
		}
		System.out.println(ans);
	}
}
0