結果

問題 No.1280 Beyond C
ユーザー aaaaaaaaaa2230
提出日時 2020-11-07 17:50:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 98,480 KB
最終ジャッジ日時 2024-07-22 14:38:54
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
count = 0
now = m-1
a.sort()
b.sort()

for i in a:
    while now >= 0 and i*b[now] > c:
        now -= 1
    count += m-now-1
print(count/(m*n))
0