結果

問題 No.723 2つの数の和
ユーザー ryosuke0825ryosuke0825
提出日時 2018-09-15 13:45:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 2,996 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 59,864 KB
最終ジャッジ日時 2024-07-17 23:47:07
合計ジャッジ時間 13,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,892 KB
testcase_01 AC 110 ms
53,012 KB
testcase_02 AC 123 ms
54,016 KB
testcase_03 AC 544 ms
59,864 KB
testcase_04 AC 598 ms
49,016 KB
testcase_05 AC 560 ms
48,916 KB
testcase_06 AC 591 ms
49,068 KB
testcase_07 AC 402 ms
48,976 KB
testcase_08 AC 485 ms
48,748 KB
testcase_09 AC 608 ms
49,084 KB
testcase_10 AC 427 ms
48,868 KB
testcase_11 AC 231 ms
46,908 KB
testcase_12 AC 432 ms
49,104 KB
testcase_13 AC 584 ms
49,424 KB
testcase_14 AC 339 ms
48,760 KB
testcase_15 AC 476 ms
48,880 KB
testcase_16 AC 519 ms
49,108 KB
testcase_17 AC 545 ms
49,332 KB
testcase_18 AC 520 ms
49,444 KB
testcase_19 AC 465 ms
59,588 KB
testcase_20 AC 125 ms
41,704 KB
testcase_21 AC 125 ms
42,140 KB
testcase_22 AC 118 ms
41,728 KB
testcase_23 AC 495 ms
48,896 KB
testcase_24 AC 337 ms
48,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No723 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String nx = sc.nextLine();
		String[] nxArr = nx.split(" ");
		int N = Integer.parseInt(nxArr[0]);
		int X = Integer.parseInt(nxArr[1]);

		int a[]=new int[100000];
		int t[] = new int[100001];
		int i;
		for(i=0;i<N;i++) {
			a[i]=sc.nextInt();
			t[a[i]]++;
		}
		sc.close();
		long s=0;
		for(i=0;i<N;i++) {
			if(X-a[i]>=0 && 100000 >= X-a[i]) {
				s +=t[X-a[i]];
			}
		}
		System.out.println(s);

	}

}
0