結果

問題 No.723 2つの数の和
ユーザー masamasa
提出日時 2019-01-16 16:19:18
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 442 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 52,484 KB
最終ジャッジ日時 2024-06-28 09:06:31
合計ジャッジ時間 14,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
45,096 KB
testcase_01 AC 137 ms
45,188 KB
testcase_02 AC 136 ms
45,088 KB
testcase_03 AC 580 ms
52,288 KB
testcase_04 AC 571 ms
52,332 KB
testcase_05 AC 618 ms
52,400 KB
testcase_06 AC 590 ms
52,100 KB
testcase_07 AC 442 ms
52,092 KB
testcase_08 AC 488 ms
52,144 KB
testcase_09 AC 590 ms
52,344 KB
testcase_10 AC 471 ms
52,360 KB
testcase_11 AC 254 ms
49,848 KB
testcase_12 AC 516 ms
52,140 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 135 ms
44,912 KB
testcase_21 AC 134 ms
45,444 KB
testcase_22 AC 135 ms
44,976 KB
testcase_23 AC 522 ms
51,836 KB
testcase_24 AC 400 ms
51,844 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) ans += t[x - a[i]];
		}
		
		System.out.println(ans);
	}
}
0