結果

問題 No.723 2つの数の和
ユーザー htensaihtensai
提出日時 2019-11-12 00:44:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 63,320 KB
最終ジャッジ日時 2024-09-15 11:21:06
合計ジャッジ時間 16,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,996 KB
testcase_01 AC 133 ms
40,988 KB
testcase_02 AC 133 ms
40,996 KB
testcase_03 AC 701 ms
50,620 KB
testcase_04 AC 835 ms
55,232 KB
testcase_05 AC 764 ms
55,200 KB
testcase_06 AC 820 ms
55,144 KB
testcase_07 AC 530 ms
49,692 KB
testcase_08 AC 512 ms
49,212 KB
testcase_09 AC 801 ms
55,824 KB
testcase_10 AC 555 ms
49,536 KB
testcase_11 AC 287 ms
47,440 KB
testcase_12 AC 594 ms
50,444 KB
testcase_13 AC 811 ms
56,172 KB
testcase_14 AC 427 ms
48,868 KB
testcase_15 AC 579 ms
49,672 KB
testcase_16 AC 651 ms
50,492 KB
testcase_17 AC 781 ms
54,440 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 132 ms
41,136 KB
testcase_21 AC 132 ms
40,856 KB
testcase_22 AC 117 ms
40,112 KB
testcase_23 AC 875 ms
63,320 KB
testcase_24 AC 469 ms
48,860 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