結果

問題 No.723 2つの数の和
ユーザー Pump0129Pump0129
提出日時 2018-11-28 00:40:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,187 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 68,176 KB
最終ジャッジ日時 2024-06-24 21:41:25
合計ジャッジ時間 15,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,316 KB
testcase_01 AC 130 ms
41,396 KB
testcase_02 AC 127 ms
41,172 KB
testcase_03 AC 680 ms
56,416 KB
testcase_04 AC 808 ms
61,904 KB
testcase_05 AC 758 ms
61,652 KB
testcase_06 AC 794 ms
61,460 KB
testcase_07 AC 510 ms
53,560 KB
testcase_08 AC 566 ms
53,976 KB
testcase_09 AC 817 ms
61,744 KB
testcase_10 AC 523 ms
53,116 KB
testcase_11 AC 273 ms
49,012 KB
testcase_12 AC 573 ms
54,796 KB
testcase_13 AC 796 ms
64,412 KB
testcase_14 AC 362 ms
51,348 KB
testcase_15 AC 526 ms
52,356 KB
testcase_16 AC 617 ms
55,736 KB
testcase_17 AC 724 ms
60,500 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 128 ms
41,468 KB
testcase_21 AC 112 ms
41,308 KB
testcase_22 AC 127 ms
41,588 KB
testcase_23 AC 665 ms
68,176 KB
testcase_24 AC 444 ms
52,076 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<>();

        int 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