結果

問題 No.1280 Beyond C
ユーザー 330Xs330Xs
提出日時 2022-02-06 15:55:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-06-11 13:46:18
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,880 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 42 ms
53,376 KB
testcase_07 AC 45 ms
53,632 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 40 ms
53,760 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 54 ms
61,824 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 48 ms
61,056 KB
testcase_14 AC 52 ms
61,952 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n,m,c = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

a = sorted(a)[::-1]
b_counter = Counter(b)
b_key = sorted(list(b_counter.keys()))[::-1]

ans = 0
for i in range(n):
    elem = c // a[i]
    if(b_key[-1] > elem):
        ans += m
    else:
        for j in range(len(b_key)):
            if(b_key[j] > elem):
                ans += b_counter[b_key[j]]
            else:
                break
print(ans / (n * m))
0