結果

問題 No.1280 Beyond C
ユーザー tentententen
提出日時 2020-11-09 09:30:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 2,753 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-07-22 15:58:10
合計ジャッジ時間 11,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,684 KB
testcase_01 AC 107 ms
39,948 KB
testcase_02 AC 110 ms
40,144 KB
testcase_03 AC 124 ms
41,524 KB
testcase_04 AC 114 ms
41,380 KB
testcase_05 AC 103 ms
40,300 KB
testcase_06 AC 106 ms
41,404 KB
testcase_07 AC 105 ms
41,712 KB
testcase_08 AC 117 ms
41,428 KB
testcase_09 AC 104 ms
41,392 KB
testcase_10 AC 126 ms
41,320 KB
testcase_11 AC 171 ms
42,736 KB
testcase_12 AC 137 ms
41,956 KB
testcase_13 AC 166 ms
42,500 KB
testcase_14 AC 171 ms
42,672 KB
testcase_15 AC 557 ms
49,972 KB
testcase_16 AC 596 ms
49,684 KB
testcase_17 AC 661 ms
49,400 KB
testcase_18 AC 680 ms
58,436 KB
testcase_19 AC 738 ms
58,088 KB
testcase_20 AC 828 ms
59,136 KB
testcase_21 AC 807 ms
57,960 KB
testcase_22 AC 816 ms
57,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        long c = sc.nextLong();
        int[] aArr = new int[n];
        for (int i = 0; i < n; i++) {
            aArr[i] = sc.nextInt();
        }
        Arrays.sort(aArr);
        int[] bArr = new int[m];
        for (int i = 0; i < m; i++) {
            bArr[i] = sc.nextInt();
        }
        Arrays.sort(bArr);
        long count = 0;
        int idx = m;
        for (int i = 0; i < n; i++) {
            while (idx > 0 && (long)aArr[i] * bArr[idx - 1] > c) {
                idx--;
            }
            count += m - idx;
        }
        System.out.println((double)count / n / m);
    }
}
0