結果

問題 No.723 2つの数の和
ユーザー YamaKasaYamaKasa
提出日時 2018-08-04 12:31:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 59,548 KB
最終ジャッジ日時 2024-09-19 17:48:24
合計ジャッジ時間 12,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,640 KB
testcase_01 AC 120 ms
53,840 KB
testcase_02 AC 121 ms
53,856 KB
testcase_03 AC 510 ms
59,212 KB
testcase_04 AC 541 ms
59,392 KB
testcase_05 AC 517 ms
59,460 KB
testcase_06 AC 529 ms
59,472 KB
testcase_07 AC 372 ms
59,168 KB
testcase_08 AC 449 ms
59,428 KB
testcase_09 AC 589 ms
59,364 KB
testcase_10 AC 453 ms
59,288 KB
testcase_11 AC 229 ms
57,524 KB
testcase_12 AC 428 ms
59,212 KB
testcase_13 AC 573 ms
59,532 KB
testcase_14 AC 340 ms
59,004 KB
testcase_15 AC 451 ms
59,412 KB
testcase_16 AC 498 ms
59,120 KB
testcase_17 AC 539 ms
59,548 KB
testcase_18 AC 478 ms
59,148 KB
testcase_19 AC 509 ms
58,824 KB
testcase_20 AC 123 ms
53,872 KB
testcase_21 AC 121 ms
53,864 KB
testcase_22 AC 126 ms
53,948 KB
testcase_23 AC 489 ms
59,028 KB
testcase_24 AC 345 ms
59,052 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;
		long []a = new long[l];

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