結果

問題 No.1280 Beyond C
ユーザー AzumabashiAzumabashi
提出日時 2020-11-08 13:09:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,940 KB
最終ジャッジ日時 2024-07-22 15:05:54
合計ジャッジ時間 2,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 92 ms
19,800 KB
testcase_16 AC 75 ms
19,332 KB
testcase_17 AC 88 ms
20,532 KB
testcase_18 AC 123 ms
25,872 KB
testcase_19 AC 118 ms
25,872 KB
testcase_20 AC 158 ms
25,940 KB
testcase_21 AC 152 ms
25,940 KB
testcase_22 AC 156 ms
25,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right


def main():
    n, m, c = map(int, input().split())
    a = [int(k) for k in input().split()]
    b = [int(k) for k in input().split()]
    ans = 0
    b.sort()
    for aa in a:
        ans += bisect_right(b, c // aa)
    print(1 - ans / n / m)


if __name__ == '__main__':
    main()
0