結果

問題 No.1280 Beyond C
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-06 21:33:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 96,024 KB
最終ジャッジ日時 2023-09-29 18:18:09
合計ジャッジ時間 3,672 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,468 KB
testcase_01 AC 62 ms
71,400 KB
testcase_02 AC 64 ms
71,564 KB
testcase_03 AC 64 ms
71,452 KB
testcase_04 AC 63 ms
71,364 KB
testcase_05 AC 65 ms
71,316 KB
testcase_06 AC 65 ms
71,308 KB
testcase_07 AC 63 ms
71,504 KB
testcase_08 AC 67 ms
71,472 KB
testcase_09 AC 64 ms
71,092 KB
testcase_10 AC 67 ms
71,492 KB
testcase_11 AC 71 ms
76,212 KB
testcase_12 AC 63 ms
71,436 KB
testcase_13 AC 68 ms
76,292 KB
testcase_14 AC 71 ms
76,328 KB
testcase_15 AC 120 ms
90,516 KB
testcase_16 AC 107 ms
88,212 KB
testcase_17 AC 121 ms
90,896 KB
testcase_18 AC 123 ms
95,696 KB
testcase_19 WA -
testcase_20 AC 176 ms
96,024 KB
testcase_21 AC 157 ms
95,944 KB
testcase_22 AC 184 ms
95,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
B.sort()
ans = 0
import bisect
for a in A:
    i = bisect.bisect_right(B,c/a)
    ans += m-i
ans /= n*m
print(ans)
0