結果

問題 No.723 2つの数の和
ユーザー 37zigen37zigen
提出日時 2018-08-03 23:13:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 63,604 KB
最終ジャッジ日時 2024-09-19 17:39:00
合計ジャッジ時間 11,641 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

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]]++;
		}
		long 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