結果

問題 No.723 2つの数の和
ユーザー htensaihtensai
提出日時 2019-11-12 00:48:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 63,296 KB
最終ジャッジ日時 2024-09-15 11:29:54
合計ジャッジ時間 16,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,020 KB
testcase_01 AC 119 ms
39,852 KB
testcase_02 AC 129 ms
40,996 KB
testcase_03 AC 673 ms
50,888 KB
testcase_04 AC 774 ms
55,784 KB
testcase_05 AC 739 ms
54,972 KB
testcase_06 AC 779 ms
55,172 KB
testcase_07 AC 525 ms
49,672 KB
testcase_08 AC 585 ms
49,860 KB
testcase_09 AC 782 ms
55,760 KB
testcase_10 AC 557 ms
49,416 KB
testcase_11 AC 288 ms
47,788 KB
testcase_12 AC 599 ms
50,312 KB
testcase_13 AC 821 ms
56,000 KB
testcase_14 AC 432 ms
48,516 KB
testcase_15 AC 575 ms
49,924 KB
testcase_16 AC 667 ms
50,760 KB
testcase_17 AC 788 ms
54,424 KB
testcase_18 AC 497 ms
47,164 KB
testcase_19 AC 593 ms
48,928 KB
testcase_20 AC 129 ms
40,996 KB
testcase_21 AC 129 ms
40,836 KB
testcase_22 AC 121 ms
39,840 KB
testcase_23 AC 877 ms
63,296 KB
testcase_24 AC 464 ms
49,012 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, Long> 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, 1L);
		    }
		}
		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