結果

問題 No.723 2つの数の和
ユーザー YamaKasaYamaKasa
提出日時 2018-08-04 12:30:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 48,716 KB
最終ジャッジ日時 2024-09-19 17:48:09
合計ジャッジ時間 12,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
42,052 KB
testcase_01 AC 121 ms
41,692 KB
testcase_02 AC 107 ms
41,424 KB
testcase_03 AC 493 ms
48,412 KB
testcase_04 AC 572 ms
48,636 KB
testcase_05 AC 488 ms
48,372 KB
testcase_06 AC 535 ms
48,308 KB
testcase_07 AC 421 ms
48,352 KB
testcase_08 AC 434 ms
48,128 KB
testcase_09 AC 440 ms
48,596 KB
testcase_10 AC 399 ms
48,208 KB
testcase_11 AC 237 ms
47,268 KB
testcase_12 AC 477 ms
48,424 KB
testcase_13 AC 511 ms
48,716 KB
testcase_14 AC 317 ms
48,080 KB
testcase_15 AC 397 ms
48,416 KB
testcase_16 AC 449 ms
48,468 KB
testcase_17 AC 531 ms
48,224 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 120 ms
41,504 KB
testcase_21 AC 112 ms
41,624 KB
testcase_22 AC 110 ms
41,812 KB
testcase_23 AC 458 ms
48,192 KB
testcase_24 AC 350 ms
47,856 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;
		int []a = new int[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