結果

問題 No.1280 Beyond C
ユーザー lllllll88938494lllllll88938494
提出日時 2022-08-26 02:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 98,048 KB
最終ジャッジ日時 2024-10-13 06:41:55
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 39 ms
51,948 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 46 ms
61,440 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 43 ms
59,904 KB
testcase_14 AC 44 ms
61,440 KB
testcase_15 AC 107 ms
90,368 KB
testcase_16 AC 89 ms
88,596 KB
testcase_17 AC 102 ms
90,752 KB
testcase_18 AC 106 ms
96,640 KB
testcase_19 AC 108 ms
96,256 KB
testcase_20 AC 146 ms
97,792 KB
testcase_21 AC 147 ms
98,048 KB
testcase_22 AC 146 ms
97,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,C=map(int,input().split())
a=list(map(int,input().split()))
b=[0]+list(map(int,input().split()))

b.sort()

def  ni(x):

    def  c(xx):
        return b[xx]*x > C
        
    ng = 0
    ok = m+1
    while ok - ng > 1:
        mid=(ok + ng) // 2
        if c(mid):
            ok = mid
        else:
            ng = mid

    return ng

ans=0

for i in range(n):
    t=ni(a[i])
    ans+= m-t

answer= ans/(n*m)

print(answer)
0