結果

問題 No.1280 Beyond C
ユーザー chineristAC
提出日時 2020-11-06 21:32:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 97,792 KB
最終ジャッジ日時 2024-07-22 12:18:19
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,M,C = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

res = 0
for i in range(N):
    limit = C//a[i]
    idx = bisect.bisect_right(b,limit)
    res += idx

print(1-(res/(N*M)))
0