結果

問題 No.1280 Beyond C
ユーザー trineutrontrineutron
提出日時 2020-11-21 16:37:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 98,616 KB
最終ジャッジ日時 2024-07-23 15:45:18
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,388 KB
testcase_01 AC 37 ms
52,008 KB
testcase_02 AC 38 ms
52,812 KB
testcase_03 AC 39 ms
52,836 KB
testcase_04 AC 37 ms
52,260 KB
testcase_05 AC 37 ms
53,284 KB
testcase_06 AC 37 ms
52,268 KB
testcase_07 AC 37 ms
52,880 KB
testcase_08 AC 38 ms
53,404 KB
testcase_09 AC 37 ms
53,944 KB
testcase_10 AC 37 ms
52,132 KB
testcase_11 AC 41 ms
59,856 KB
testcase_12 AC 38 ms
52,400 KB
testcase_13 AC 41 ms
58,456 KB
testcase_14 AC 42 ms
58,760 KB
testcase_15 AC 87 ms
88,608 KB
testcase_16 AC 78 ms
85,284 KB
testcase_17 AC 85 ms
88,768 KB
testcase_18 AC 86 ms
97,780 KB
testcase_19 AC 88 ms
98,032 KB
testcase_20 AC 124 ms
98,616 KB
testcase_21 AC 123 ms
98,464 KB
testcase_22 AC 124 ms
98,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, c = map(int, input().split())
a = sorted(list(map(int, input().split())))
b = sorted(list(map(int, input().split())), reverse=True)
ans = 0
index = 0
for x in a:
    while index < m and x * b[index] > c:
        index += 1
    ans += index
print(ans / (n * m))
0