結果

問題 No.1280 Beyond C
ユーザー ks2mks2m
提出日時 2020-11-06 21:35:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 2,736 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 56,408 KB
最終ジャッジ日時 2024-07-22 12:21:45
合計ジャッジ時間 7,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,048 KB
testcase_01 AC 56 ms
37,144 KB
testcase_02 AC 58 ms
36,992 KB
testcase_03 AC 60 ms
36,968 KB
testcase_04 AC 58 ms
37,188 KB
testcase_05 AC 58 ms
37,048 KB
testcase_06 AC 58 ms
37,220 KB
testcase_07 AC 57 ms
36,932 KB
testcase_08 AC 57 ms
37,152 KB
testcase_09 AC 58 ms
37,048 KB
testcase_10 AC 58 ms
36,820 KB
testcase_11 AC 66 ms
37,400 KB
testcase_12 AC 60 ms
37,188 KB
testcase_13 AC 68 ms
37,120 KB
testcase_14 AC 64 ms
37,240 KB
testcase_15 AC 356 ms
52,552 KB
testcase_16 AC 326 ms
48,700 KB
testcase_17 AC 327 ms
52,076 KB
testcase_18 AC 369 ms
55,500 KB
testcase_19 AC 370 ms
55,392 KB
testcase_20 AC 454 ms
56,408 KB
testcase_21 AC 458 ms
56,220 KB
testcase_22 AC 433 ms
55,088 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]);
		long c = Long.parseLong(sa[2]);
		sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		double[] b = new double[m];
		for (int i = 0; i < m; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long total = (long) n * m;
		Arrays.sort(a);
		Arrays.sort(b);
		long sum = 0;
		for (int i = 0; i < n; i++) {
			long val = c / a[i] + 1;
			int idx = Arrays.binarySearch(b, val - 0.5);
			if (idx < 0) idx = ~idx;
			sum += m - idx;
		}
		System.out.println((double) sum / total);
	}
}
0