結果

問題 No.989 N×Mマス計算(K以上)
ユーザー ks2mks2m
提出日時 2020-02-14 21:43:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 62,024 KB
最終ジャッジ日時 2024-10-06 11:06:18
合計ジャッジ時間 6,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,440 KB
testcase_01 AC 52 ms
50,260 KB
testcase_02 AC 54 ms
50,348 KB
testcase_03 AC 53 ms
50,380 KB
testcase_04 AC 52 ms
50,428 KB
testcase_05 AC 53 ms
50,072 KB
testcase_06 AC 52 ms
50,412 KB
testcase_07 AC 55 ms
50,396 KB
testcase_08 AC 53 ms
50,320 KB
testcase_09 AC 54 ms
50,292 KB
testcase_10 AC 285 ms
58,952 KB
testcase_11 AC 279 ms
59,544 KB
testcase_12 AC 318 ms
59,188 KB
testcase_13 AC 220 ms
58,284 KB
testcase_14 AC 341 ms
62,024 KB
testcase_15 AC 192 ms
55,704 KB
testcase_16 AC 274 ms
58,552 KB
testcase_17 AC 216 ms
58,704 KB
testcase_18 AC 200 ms
57,076 KB
testcase_19 AC 280 ms
61,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int k = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		String s = sa[0];
		double[] b = new double[m];
		for (int i = 0; i < b.length; i++) {
			b[i] = Long.parseLong(sa[i + 1]);
		}
		long[] a = new long[n];
		for (int i = 0; i < a.length; i++) {
			a[i] = Long.parseLong(br.readLine());
		}
		br.close();

		Arrays.parallelSort(a);
		Arrays.parallelSort(b);

		long ans = 0;
		for (int i = 0; i < a.length; i++) {
			long v = 0;
			if ("+".equals(s)) {
				v = k - a[i];
			} else {
				v = (k + a[i] - 1) / a[i];
			}
			int idx = Arrays.binarySearch(b, v - 0.5);
			idx = ~idx;
			ans += m - idx;
		}
		System.out.println(ans);
	}
}
0