結果

問題 No.723 2つの数の和
ユーザー 37zigen37zigen
提出日時 2018-08-03 23:13:02
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
58,136 KB
testcase_01 AC 105 ms
56,768 KB
testcase_02 AC 109 ms
58,236 KB
testcase_03 AC 484 ms
63,432 KB
testcase_04 AC 514 ms
63,468 KB
testcase_05 AC 513 ms
63,316 KB
testcase_06 AC 505 ms
63,348 KB
testcase_07 AC 394 ms
63,432 KB
testcase_08 AC 417 ms
63,272 KB
testcase_09 AC 497 ms
62,284 KB
testcase_10 AC 370 ms
63,092 KB
testcase_11 AC 216 ms
62,444 KB
testcase_12 AC 438 ms
63,396 KB
testcase_13 AC 522 ms
63,604 KB
testcase_14 AC 315 ms
63,104 KB
testcase_15 AC 398 ms
63,172 KB
testcase_16 AC 454 ms
63,296 KB
testcase_17 AC 482 ms
63,344 KB
testcase_18 AC 499 ms
62,920 KB
testcase_19 AC 485 ms
63,276 KB
testcase_20 AC 114 ms
57,084 KB
testcase_21 AC 111 ms
58,256 KB
testcase_22 AC 113 ms
57,852 KB
testcase_23 AC 442 ms
62,884 KB
testcase_24 AC 334 ms
63,140 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]]++;
		}
		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