結果

問題 No.1280 Beyond C
ユーザー EvolMaxEvolMax
提出日時 2020-11-12 09:36:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 59,568 KB
最終ジャッジ日時 2024-07-22 19:05:05
合計ジャッジ時間 12,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,256 KB
testcase_01 AC 133 ms
41,648 KB
testcase_02 AC 134 ms
41,344 KB
testcase_03 AC 130 ms
41,400 KB
testcase_04 AC 138 ms
41,580 KB
testcase_05 AC 135 ms
41,408 KB
testcase_06 AC 136 ms
41,392 KB
testcase_07 AC 133 ms
41,324 KB
testcase_08 AC 135 ms
41,472 KB
testcase_09 AC 131 ms
41,480 KB
testcase_10 AC 134 ms
41,640 KB
testcase_11 AC 195 ms
42,956 KB
testcase_12 AC 171 ms
41,872 KB
testcase_13 AC 195 ms
42,672 KB
testcase_14 AC 209 ms
42,716 KB
testcase_15 AC 741 ms
48,852 KB
testcase_16 AC 741 ms
49,176 KB
testcase_17 AC 729 ms
50,880 KB
testcase_18 AC 800 ms
58,104 KB
testcase_19 AC 879 ms
58,196 KB
testcase_20 AC 915 ms
59,568 KB
testcase_21 AC 975 ms
56,244 KB
testcase_22 AC 924 ms
58,596 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