結果

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

ソースコード

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