結果

問題 No.1280 Beyond C
ユーザー 330Xs330Xs
提出日時 2022-02-06 16:00:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,736 KB
最終ジャッジ日時 2024-06-11 13:46:30
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 38 ms
53,504 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 39 ms
53,632 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 41 ms
53,376 KB
testcase_09 AC 40 ms
53,376 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 48 ms
61,696 KB
testcase_12 AC 38 ms
53,760 KB
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 49 ms
61,696 KB
testcase_15 AC 106 ms
89,216 KB
testcase_16 AC 101 ms
87,168 KB
testcase_17 AC 104 ms
90,240 KB
testcase_18 AC 115 ms
94,316 KB
testcase_19 AC 117 ms
94,448 KB
testcase_20 AC 147 ms
94,732 KB
testcase_21 AC 147 ms
94,736 KB
testcase_22 AC 149 ms
94,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from bisect import bisect_right
n,m,c = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

b.sort()
ans = 0
for i in range(n):
    elem = c // a[i]
    ind = bisect_right(b,elem)
    ans += m - ind
print(ans / (n * m))
0