結果

問題 No.723 2つの数の和
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-04 13:03:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 49,024 KB
最終ジャッジ日時 2024-07-08 01:26:37
合計ジャッジ時間 14,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,992 KB
testcase_01 AC 131 ms
41,808 KB
testcase_02 AC 127 ms
41,408 KB
testcase_03 AC 547 ms
48,680 KB
testcase_04 AC 563 ms
48,868 KB
testcase_05 AC 548 ms
49,024 KB
testcase_06 AC 566 ms
48,908 KB
testcase_07 AC 444 ms
48,600 KB
testcase_08 AC 470 ms
48,540 KB
testcase_09 AC 599 ms
49,020 KB
testcase_10 AC 444 ms
48,452 KB
testcase_11 AC 244 ms
46,692 KB
testcase_12 AC 465 ms
48,496 KB
testcase_13 AC 574 ms
48,992 KB
testcase_14 AC 347 ms
48,384 KB
testcase_15 AC 460 ms
48,480 KB
testcase_16 AC 520 ms
48,908 KB
testcase_17 AC 561 ms
48,772 KB
testcase_18 AC 563 ms
48,556 KB
testcase_19 AC 541 ms
48,412 KB
testcase_20 AC 128 ms
41,984 KB
testcase_21 AC 115 ms
41,728 KB
testcase_22 AC 127 ms
41,692 KB
testcase_23 AC 506 ms
48,572 KB
testcase_24 AC 370 ms
48,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int x = sc.nextInt();
    int[] a = new int[n];
    int[] num = new int[100001];
    for(int i = 0; i < n; i++) {
      int t = sc.nextInt();
      a[i] = t;
      num[t]++;
    }
    long ans = 0;
    for(int i = 0; i < n; i++) {
      if(((x - a[i]) >= 0) && ((x - a[i]) <= 100000)) ans += num[x - a[i]];
    }
    System.out.println(ans);
  }
}
0