結果

問題 No.1280 Beyond C
ユーザー tentententen
提出日時 2023-02-16 18:28:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,116 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 90,952 KB
実行使用メモリ 51,144 KB
最終ジャッジ日時 2024-07-18 18:22:22
合計ジャッジ時間 8,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,436 KB
testcase_01 AC 52 ms
37,336 KB
testcase_02 AC 53 ms
37,624 KB
testcase_03 AC 54 ms
37,440 KB
testcase_04 AC 53 ms
37,616 KB
testcase_05 AC 53 ms
37,280 KB
testcase_06 AC 52 ms
37,204 KB
testcase_07 AC 53 ms
37,428 KB
testcase_08 AC 53 ms
37,624 KB
testcase_09 AC 53 ms
37,700 KB
testcase_10 AC 56 ms
37,760 KB
testcase_11 AC 79 ms
38,296 KB
testcase_12 AC 57 ms
37,448 KB
testcase_13 AC 79 ms
38,136 KB
testcase_14 AC 69 ms
37,960 KB
testcase_15 AC 302 ms
47,660 KB
testcase_16 AC 261 ms
46,892 KB
testcase_17 AC 262 ms
47,264 KB
testcase_18 AC 306 ms
51,076 KB
testcase_19 AC 313 ms
51,144 KB
testcase_20 AC 384 ms
50,352 KB
testcase_21 AC 376 ms
50,696 KB
testcase_22 AC 372 ms
50,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        long c = sc.nextLong();
        long[] valueA = new long[n];
        for (int i = 0; i < n; i++) {
            valueA[i] = sc.nextInt();
        }
        long[] valueB = new long[m];
        for (int i = 0; i < m; i++) {
            valueB[i] = sc.nextInt();
        }
        Arrays.sort(valueA);
        Arrays.sort(valueB);
        int right = 0;
        long ans = 0;
        for (int i = n - 1; i >= 0; i--) {
            while (right < m && valueA[i] * valueB[right] <= c) {
                right++;
            }
            ans += m - right;
        }
        System.out.println(new java.math.BigDecimal(1.0 * ans / m / n));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0