結果

問題 No.723 2つの数の和
ユーザー tentententen
提出日時 2022-10-06 13:06:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 78,868 KB
実行使用メモリ 52,000 KB
最終ジャッジ日時 2024-06-10 23:06:15
合計ジャッジ時間 7,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,648 KB
testcase_01 AC 45 ms
36,908 KB
testcase_02 AC 44 ms
37,028 KB
testcase_03 AC 221 ms
47,472 KB
testcase_04 AC 270 ms
48,824 KB
testcase_05 AC 244 ms
48,916 KB
testcase_06 AC 244 ms
48,696 KB
testcase_07 AC 195 ms
45,568 KB
testcase_08 AC 204 ms
45,828 KB
testcase_09 AC 251 ms
48,224 KB
testcase_10 AC 189 ms
45,836 KB
testcase_11 AC 97 ms
40,096 KB
testcase_12 AC 205 ms
46,732 KB
testcase_13 AC 243 ms
48,744 KB
testcase_14 AC 145 ms
44,112 KB
testcase_15 AC 197 ms
45,920 KB
testcase_16 AC 218 ms
47,420 KB
testcase_17 AC 235 ms
47,944 KB
testcase_18 AC 179 ms
44,776 KB
testcase_19 AC 202 ms
45,524 KB
testcase_20 AC 44 ms
36,560 KB
testcase_21 AC 44 ms
37,024 KB
testcase_22 AC 43 ms
37,048 KB
testcase_23 AC 258 ms
52,000 KB
testcase_24 AC 181 ms
44,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        HashMap<Integer, Long> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int y = sc.nextInt();
            counts.put(y, counts.getOrDefault(y, 0L) + 1);
        }
        long ans = 0;
        for (int y : counts.keySet()) {
            if (y * 2 == x) {
                ans += counts.get(y) * counts.get(y);
            } else {
                ans += counts.get(y) * counts.getOrDefault(x - y, 0L);
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0