結果

問題 No.723 2つの数の和
ユーザー tentententen
提出日時 2022-08-03 09:11:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 78,584 KB
実行使用メモリ 64,704 KB
最終ジャッジ日時 2024-09-12 21:54:38
合計ジャッジ時間 8,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,344 KB
testcase_01 AC 52 ms
50,104 KB
testcase_02 AC 55 ms
50,364 KB
testcase_03 AC 262 ms
58,528 KB
testcase_04 AC 281 ms
58,668 KB
testcase_05 AC 280 ms
58,732 KB
testcase_06 AC 270 ms
58,708 KB
testcase_07 AC 233 ms
56,508 KB
testcase_08 AC 229 ms
56,780 KB
testcase_09 AC 300 ms
58,748 KB
testcase_10 AC 218 ms
56,328 KB
testcase_11 AC 127 ms
52,252 KB
testcase_12 AC 244 ms
58,464 KB
testcase_13 AC 304 ms
58,688 KB
testcase_14 AC 174 ms
55,116 KB
testcase_15 AC 231 ms
56,272 KB
testcase_16 AC 247 ms
58,516 KB
testcase_17 AC 271 ms
58,608 KB
testcase_18 AC 198 ms
56,164 KB
testcase_19 AC 228 ms
55,956 KB
testcase_20 AC 54 ms
50,120 KB
testcase_21 AC 54 ms
50,404 KB
testcase_22 AC 54 ms
50,448 KB
testcase_23 AC 300 ms
64,704 KB
testcase_24 AC 192 ms
55,048 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 target = sc.nextInt();
        HashMap<Integer, Long> count = new HashMap<>();
        while (n-- > 0) {
            int x = sc.nextInt();
            count.put(x, count.getOrDefault(x, 0L) + 1);
        }
        long ans = 0;
        for (int x : count.keySet()) {
            ans += count.get(x) * count.getOrDefault(target - x, 0L);
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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