結果

問題 No.723 2つの数の和
ユーザー tentententen
提出日時 2020-09-02 10:09:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 78,848 KB
実行使用メモリ 56,168 KB
最終ジャッジ日時 2024-11-21 14:04:15
合計ジャッジ時間 15,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,236 KB
testcase_01 AC 127 ms
41,444 KB
testcase_02 AC 125 ms
41,576 KB
testcase_03 AC 668 ms
50,976 KB
testcase_04 AC 761 ms
55,244 KB
testcase_05 AC 691 ms
55,092 KB
testcase_06 AC 726 ms
54,964 KB
testcase_07 AC 499 ms
50,068 KB
testcase_08 AC 518 ms
50,336 KB
testcase_09 AC 758 ms
56,168 KB
testcase_10 AC 526 ms
48,900 KB
testcase_11 AC 256 ms
47,748 KB
testcase_12 AC 555 ms
50,636 KB
testcase_13 AC 784 ms
56,160 KB
testcase_14 AC 396 ms
49,388 KB
testcase_15 AC 534 ms
50,080 KB
testcase_16 AC 627 ms
51,216 KB
testcase_17 AC 708 ms
52,984 KB
testcase_18 AC 471 ms
46,716 KB
testcase_19 AC 549 ms
49,168 KB
testcase_20 AC 111 ms
40,100 KB
testcase_21 AC 119 ms
41,384 KB
testcase_22 AC 121 ms
41,652 KB
testcase_23 AC 618 ms
55,440 KB
testcase_24 AC 426 ms
49,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        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;
        if (x % 2 == 0 && map.containsKey(x / 2)) {
            int sum = map.get(x / 2);
            total += (long)sum * sum;
            map.remove(x / 2);
        }
        int length = map.size();
        int[] values = new int[length];
        int[] counts = new int[length];
        int idx = 0;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            values[idx] = entry.getKey();
            counts[idx] = entry.getValue();
            idx++;
        }
        int left = 0;
        int right = length - 1;
        while (left < right) {
            while (left < right && values[right] + values[left] > x) {
                right--;
            }
            if (values[right] + values[left] == x) {
                total += (long)counts[left] * counts[right] * 2;
            }
            left++;
        }
        System.out.println(total);
    }
    
}
0