結果

問題 No.723 2つの数の和
ユーザー masamasa
提出日時 2019-01-16 16:23:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 63,332 KB
最終ジャッジ日時 2024-06-28 09:17:31
合計ジャッジ時間 14,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
43,788 KB
testcase_01 AC 137 ms
45,240 KB
testcase_02 AC 135 ms
44,908 KB
testcase_03 AC 537 ms
51,848 KB
testcase_04 AC 587 ms
52,244 KB
testcase_05 AC 619 ms
52,212 KB
testcase_06 AC 622 ms
52,120 KB
testcase_07 AC 465 ms
51,764 KB
testcase_08 AC 490 ms
51,904 KB
testcase_09 AC 592 ms
52,288 KB
testcase_10 AC 475 ms
51,784 KB
testcase_11 AC 255 ms
49,472 KB
testcase_12 AC 517 ms
51,792 KB
testcase_13 AC 657 ms
52,076 KB
testcase_14 AC 344 ms
51,584 KB
testcase_15 AC 476 ms
52,252 KB
testcase_16 AC 551 ms
52,080 KB
testcase_17 AC 590 ms
52,432 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 137 ms
44,956 KB
testcase_21 AC 135 ms
44,900 KB
testcase_22 AC 136 ms
45,176 KB
testcase_23 AC 535 ms
51,764 KB
testcase_24 AC 386 ms
51,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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 t[] = new int[1000000];
		int ans = 0;
		
		for (int i = 0; i < n; i++) {
		    a[i] = sc.nextInt();
		    t[a[i]]++;
		}
		
		for (int i = 0; i < n; i++) {
		    if (x - a[i] >= 0 && x - a[i] <= 1000000) ans += t[x - a[i]];
		}
		
		System.out.println(ans);
	}
}
0