結果

問題 No.723 2つの数の和
ユーザー Pump0129Pump0129
提出日時 2018-11-28 00:41:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 852 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 79,456 KB
実行使用メモリ 67,876 KB
最終ジャッジ日時 2024-06-24 21:42:33
合計ジャッジ時間 15,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,408 KB
testcase_01 AC 124 ms
42,064 KB
testcase_02 AC 126 ms
41,620 KB
testcase_03 AC 651 ms
57,452 KB
testcase_04 AC 852 ms
61,976 KB
testcase_05 AC 739 ms
61,424 KB
testcase_06 AC 809 ms
61,696 KB
testcase_07 AC 493 ms
53,872 KB
testcase_08 AC 544 ms
53,948 KB
testcase_09 AC 792 ms
62,104 KB
testcase_10 AC 505 ms
53,164 KB
testcase_11 AC 271 ms
49,668 KB
testcase_12 AC 562 ms
54,804 KB
testcase_13 AC 785 ms
64,424 KB
testcase_14 AC 390 ms
51,984 KB
testcase_15 AC 549 ms
53,844 KB
testcase_16 AC 602 ms
55,956 KB
testcase_17 AC 754 ms
60,108 KB
testcase_18 AC 527 ms
50,468 KB
testcase_19 AC 586 ms
51,004 KB
testcase_20 AC 129 ms
41,652 KB
testcase_21 AC 119 ms
41,504 KB
testcase_22 AC 125 ms
41,368 KB
testcase_23 AC 673 ms
67,876 KB
testcase_24 AC 435 ms
51,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.No723;

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        int num_len = scan.nextInt();
        int base_num = scan.nextInt();

        int[] num_array = new int[num_len];
        Map<Integer, List<Integer>> num_map = new HashMap<>();

        long ans_cnt = 0;

        for (int i = 0; i < num_len; i++) {
            int a = scan.nextInt();
            num_array[i] = a;

            List<Integer> li;
            if (num_map.containsKey(a)) li = num_map.get(a);
            else li = new ArrayList<>();
            li.add(i);
            num_map.put(a, li);
        }

        Arrays.sort(num_array);

        for (int i = 0; i < num_len; i++) {
            int sub = base_num - num_array[i];
            if (num_array[i] <= base_num) {
                if (num_map.containsKey(sub)) {
                    List<Integer> li = num_map.get(sub);
                    ans_cnt += li.size();
                }
            } else {
                break;
            }
        }

        System.out.println(ans_cnt);
    }
}
0