結果

問題 No.723 2つの数の和
ユーザー tentententen
提出日時 2020-09-02 10:09:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 79,100 KB
実行使用メモリ 65,540 KB
最終ジャッジ日時 2024-05-01 10:26:39
合計ジャッジ時間 13,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,108 KB
testcase_01 AC 113 ms
54,044 KB
testcase_02 AC 113 ms
52,980 KB
testcase_03 AC 521 ms
61,512 KB
testcase_04 AC 687 ms
64,980 KB
testcase_05 AC 611 ms
62,572 KB
testcase_06 AC 647 ms
63,744 KB
testcase_07 AC 454 ms
60,860 KB
testcase_08 AC 437 ms
60,832 KB
testcase_09 AC 597 ms
64,732 KB
testcase_10 AC 404 ms
58,244 KB
testcase_11 AC 237 ms
58,152 KB
testcase_12 AC 523 ms
61,672 KB
testcase_13 AC 689 ms
65,540 KB
testcase_14 AC 396 ms
59,248 KB
testcase_15 AC 502 ms
60,820 KB
testcase_16 AC 527 ms
61,312 KB
testcase_17 AC 632 ms
62,724 KB
testcase_18 AC 438 ms
57,792 KB
testcase_19 AC 460 ms
59,244 KB
testcase_20 AC 100 ms
52,692 KB
testcase_21 AC 100 ms
52,764 KB
testcase_22 AC 99 ms
52,868 KB
testcase_23 AC 541 ms
65,460 KB
testcase_24 AC 410 ms
59,376 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