結果

問題 No.723 2つの数の和
ユーザー masamasa
提出日時 2019-01-16 16:27:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,683 ms
コンパイル使用メモリ 75,484 KB
実行使用メモリ 63,748 KB
最終ジャッジ日時 2024-06-28 09:25:51
合計ジャッジ時間 15,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
58,308 KB
testcase_01 AC 135 ms
58,160 KB
testcase_02 AC 135 ms
58,100 KB
testcase_03 AC 521 ms
63,428 KB
testcase_04 AC 645 ms
63,548 KB
testcase_05 AC 567 ms
63,584 KB
testcase_06 AC 604 ms
63,588 KB
testcase_07 AC 454 ms
63,696 KB
testcase_08 AC 448 ms
63,228 KB
testcase_09 AC 617 ms
63,692 KB
testcase_10 AC 452 ms
63,376 KB
testcase_11 AC 253 ms
61,916 KB
testcase_12 AC 486 ms
63,244 KB
testcase_13 AC 629 ms
63,692 KB
testcase_14 AC 344 ms
63,248 KB
testcase_15 AC 483 ms
63,668 KB
testcase_16 AC 551 ms
63,656 KB
testcase_17 AC 600 ms
63,436 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 136 ms
58,300 KB
testcase_21 AC 135 ms
58,208 KB
testcase_22 AC 137 ms
58,184 KB
testcase_23 AC 534 ms
63,048 KB
testcase_24 AC 375 ms
63,032 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[1000001];
		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