結果

問題 No.1280 Beyond C
ユーザー NoaSaberNoaSaber
提出日時 2021-04-02 22:35:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 97,740 KB
最終ジャッジ日時 2024-06-06 07:22:34
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,672 KB
testcase_01 AC 39 ms
52,344 KB
testcase_02 AC 42 ms
53,856 KB
testcase_03 AC 39 ms
53,608 KB
testcase_04 AC 38 ms
52,348 KB
testcase_05 AC 40 ms
52,656 KB
testcase_06 AC 38 ms
53,504 KB
testcase_07 AC 38 ms
53,224 KB
testcase_08 AC 38 ms
52,776 KB
testcase_09 AC 37 ms
53,368 KB
testcase_10 AC 38 ms
53,616 KB
testcase_11 AC 54 ms
65,236 KB
testcase_12 AC 37 ms
52,812 KB
testcase_13 AC 50 ms
64,020 KB
testcase_14 AC 50 ms
63,308 KB
testcase_15 AC 136 ms
89,460 KB
testcase_16 AC 106 ms
87,568 KB
testcase_17 AC 127 ms
89,944 KB
testcase_18 AC 124 ms
95,960 KB
testcase_19 AC 127 ms
96,328 KB
testcase_20 AC 206 ms
97,348 KB
testcase_21 AC 202 ms
97,732 KB
testcase_22 AC 204 ms
97,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,C=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
a.sort()
b.sort()
ans=0
def is_ok(arg):
    return arg*i>C
def m_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
for i in a:
    tmp=m_bisect(0,10**9+1) 
    ans+=len(b)-bisect.bisect_left(b,tmp)
print(ans/len(a)/len(b))
0