結果

問題 No.723 2つの数の和
ユーザー narushimanarushima
提出日時 2020-03-24 22:00:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 2,618 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 56,200 KB
最終ジャッジ日時 2024-06-10 09:22:34
合計ジャッジ時間 7,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,468 KB
testcase_01 AC 53 ms
50,592 KB
testcase_02 AC 53 ms
50,184 KB
testcase_03 AC 198 ms
56,020 KB
testcase_04 AC 185 ms
55,668 KB
testcase_05 AC 176 ms
55,292 KB
testcase_06 AC 213 ms
56,200 KB
testcase_07 AC 156 ms
54,648 KB
testcase_08 AC 152 ms
55,448 KB
testcase_09 AC 214 ms
56,092 KB
testcase_10 AC 141 ms
54,512 KB
testcase_11 AC 105 ms
51,756 KB
testcase_12 AC 176 ms
55,968 KB
testcase_13 AC 193 ms
55,296 KB
testcase_14 AC 132 ms
54,644 KB
testcase_15 AC 161 ms
55,480 KB
testcase_16 AC 189 ms
56,088 KB
testcase_17 AC 173 ms
55,148 KB
testcase_18 AC 177 ms
56,136 KB
testcase_19 AC 188 ms
55,404 KB
testcase_20 AC 54 ms
50,380 KB
testcase_21 AC 53 ms
50,092 KB
testcase_22 AC 52 ms
50,512 KB
testcase_23 AC 215 ms
56,044 KB
testcase_24 AC 142 ms
55,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	static final int mod = (int) 1e9 + 7;
	static final int DX[] = { -1, 0, 1, 0 }, DY[] = { 0, -1, 0, 1 };
	static final int[] DX8 = { -1, -1, -1, 0, 0, 1, 1, 1 }, DY8 = { -1, 0, 1, -1, 1, -1, 0, 1 };
	static final int INF = Integer.MAX_VALUE / 3;
	static final long LINF = Long.MAX_VALUE / 3;
	static final String nextLine = "\n";

	public static void main(String[] args) {
		FastScanner fs = new FastScanner(System.in);
		int n = fs.nextInt(), x = fs.nextInt();
		int a[] = fs.nextIntArray(n);
		int memo[] = new int[100100];
		for(int i=0;i<n;i++) {
			memo[a[i]]++;
		}
		long ans = 0;
		for(int i=0;i<n;i++) {
			int b = x - a[i];
			if(b<0||100000<b)continue;
			ans += memo[b];
		}
		System.out.println(ans);
	}

	//MOD culculations
	static long plus(long x, long y) {
		long res = (x + y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long sub(long x, long y) {
		long res = (x - y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long mul(long x, long y) {
		long res = (x * y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long div(long x, long y) {
		long res = x * pow(y, mod - 2) % mod;
		return res < 0 ? res + mod : res;
	}

	static long pow(long x, long y) {
		if (y < 0)
			return 0;
		if (y == 0)
			return 1;
		if (y % 2 == 1)
			return (x * pow(x, y - 1)) % mod;
		long root = pow(x, y / 2);
		return root * root % mod;
	}
}

//高速なScanner
class FastScanner {
	private BufferedReader reader = null;
	private StringTokenizer tokenizer = null;

	public FastScanner(InputStream in) {
		reader = new BufferedReader(new InputStreamReader(in));
		tokenizer = null;
	}

	public String next() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				tokenizer = new StringTokenizer(reader.readLine());
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken();
	}

	public String nextLine() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				return reader.readLine();
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken("\n");
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}

	public int[] nextIntArray(int n) {
		int[] a = new int[n];
		for (int i = 0; i < n; i++)
			a[i] = nextInt();
		return a;
	}

	public long[] nextLongArray(int n) {
		long[] a = new long[n];
		for (int i = 0; i < n; i++)
			a[i] = nextLong();
		return a;
	}
}
0