結果

問題 No.1280 Beyond C
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-06 22:15:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 98,420 KB
最終ジャッジ日時 2024-07-22 13:01:12
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 37 ms
52,468 KB
testcase_02 AC 36 ms
53,164 KB
testcase_03 AC 35 ms
52,792 KB
testcase_04 AC 37 ms
52,752 KB
testcase_05 AC 37 ms
52,276 KB
testcase_06 AC 37 ms
52,260 KB
testcase_07 AC 38 ms
52,464 KB
testcase_08 AC 37 ms
52,628 KB
testcase_09 AC 38 ms
52,532 KB
testcase_10 AC 38 ms
53,324 KB
testcase_11 AC 48 ms
62,112 KB
testcase_12 AC 37 ms
53,356 KB
testcase_13 AC 45 ms
61,500 KB
testcase_14 AC 47 ms
62,972 KB
testcase_15 AC 103 ms
90,024 KB
testcase_16 AC 87 ms
87,884 KB
testcase_17 AC 99 ms
90,064 KB
testcase_18 AC 111 ms
96,320 KB
testcase_19 AC 109 ms
96,632 KB
testcase_20 AC 142 ms
98,324 KB
testcase_21 AC 142 ms
98,420 KB
testcase_22 AC 143 ms
98,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bsearch(mn, mx, func):
    #func(i)=False を満たす最大のi (mn<=i<mx)
    idx = (mx + mn)//2
    while mx-mn>1:
        if func(idx):
            idx, mx = (idx + mn)//2, idx
            continue
        idx, mn = (idx + mx)//2, idx
    return idx
N, M, C = map(int, input().split())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
Y.sort()
b =R = 0
for x in X:
    i = bsearch(-1, M, lambda t: Y[t]*x > C)
    R += M-i-1
    b+=M
print(R/b)
0