結果

問題 No.723 2つの数の和
ユーザー htensaihtensai
提出日時 2019-11-12 00:42:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 645 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 63,240 KB
最終ジャッジ日時 2024-09-15 11:19:37
合計ジャッジ時間 17,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,956 KB
testcase_01 AC 118 ms
40,084 KB
testcase_02 AC 120 ms
39,864 KB
testcase_03 AC 672 ms
50,024 KB
testcase_04 AC 801 ms
55,988 KB
testcase_05 AC 755 ms
55,188 KB
testcase_06 AC 785 ms
55,220 KB
testcase_07 AC 523 ms
49,736 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 558 ms
48,564 KB
testcase_11 AC 286 ms
47,400 KB
testcase_12 AC 593 ms
50,092 KB
testcase_13 AC 821 ms
56,192 KB
testcase_14 AC 432 ms
48,864 KB
testcase_15 AC 574 ms
49,772 KB
testcase_16 AC 658 ms
50,728 KB
testcase_17 AC 784 ms
54,432 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
41,052 KB
testcase_22 AC 116 ms
40,268 KB
testcase_23 AC 889 ms
63,240 KB
testcase_24 AC 459 ms
48,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int x = sc.nextInt();
		TreeMap<Integer, Integer> map = new TreeMap<>();
		for (int i = 0; i < n; i++) {
		    int a = sc.nextInt();
		    if (map.containsKey(a)) {
		        map.put(a, map.get(a) + 1);
		    } else {
		        map.put(a, 1);
		    }
		}
		long total = 0;
		for (int y : map.keySet()) {
		    if (y >= x) {
		        break;
		    }
		    if (map.containsKey(x - y)) {
		        total += map.get(y) * map.get(x - y);
		    }
		}
		System.out.println(total);
	}
}
0