結果

問題 No.723 2つの数の和
ユーザー tentententen
提出日時 2023-02-15 19:25:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,567 bytes
コンパイル時間 2,410 ms
コンパイル使用メモリ 85,028 KB
実行使用メモリ 61,708 KB
最終ジャッジ日時 2024-07-18 03:18:13
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,504 KB
testcase_01 AC 51 ms
50,492 KB
testcase_02 AC 51 ms
50,476 KB
testcase_03 AC 336 ms
58,580 KB
testcase_04 AC 380 ms
59,124 KB
testcase_05 AC 321 ms
58,488 KB
testcase_06 AC 375 ms
58,792 KB
testcase_07 AC 270 ms
56,904 KB
testcase_08 AC 271 ms
56,628 KB
testcase_09 AC 356 ms
59,092 KB
testcase_10 AC 279 ms
56,700 KB
testcase_11 AC 134 ms
52,880 KB
testcase_12 AC 285 ms
56,208 KB
testcase_13 AC 364 ms
58,928 KB
testcase_14 AC 205 ms
55,356 KB
testcase_15 AC 260 ms
56,804 KB
testcase_16 AC 306 ms
58,572 KB
testcase_17 AC 338 ms
58,588 KB
testcase_18 AC 192 ms
56,240 KB
testcase_19 AC 198 ms
56,700 KB
testcase_20 AC 51 ms
50,368 KB
testcase_21 AC 49 ms
50,116 KB
testcase_22 AC 51 ms
50,472 KB
testcase_23 AC 384 ms
61,708 KB
testcase_24 AC 201 ms
56,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int target = sc.nextInt();
        TreeMap<Integer, Long> counts = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            counts.put(x, counts.getOrDefault(x, 0L) + 1);
        }
        Integer left = Integer.MIN_VALUE;
        Integer right = Integer.MAX_VALUE;
        long ans = 0;
        while ((left = counts.higherKey(left)) != null) {
            if (counts.containsKey(right)) {
                if (left + right == target) {
                    ans += counts.get(left) * counts.get(right);
                    continue;
                } else if (left + right < target) {
                    continue;
                }
            }
            while ((right = counts.lowerKey(right)) != null) {
                if (left + right == target) {
                    ans += counts.get(left) * counts.get(right);
                    break;
                } else if (left + right < target) {
                    break;
                }
            }
            if (right == null) {
                break;
            }
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0