結果

問題 No.1280 Beyond C
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-04 15:00:42
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 23,348 KB
最終ジャッジ日時 2023-08-05 02:50:14
合計ジャッジ時間 3,773 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,088 KB
testcase_01 AC 17 ms
8,024 KB
testcase_02 AC 16 ms
7,900 KB
testcase_03 AC 16 ms
7,880 KB
testcase_04 AC 15 ms
8,008 KB
testcase_05 AC 16 ms
7,964 KB
testcase_06 AC 15 ms
8,088 KB
testcase_07 AC 15 ms
8,068 KB
testcase_08 AC 16 ms
8,020 KB
testcase_09 AC 16 ms
7,904 KB
testcase_10 AC 16 ms
7,884 KB
testcase_11 AC 16 ms
8,068 KB
testcase_12 AC 16 ms
7,884 KB
testcase_13 AC 17 ms
7,952 KB
testcase_14 AC 17 ms
7,944 KB
testcase_15 AC 97 ms
17,080 KB
testcase_16 AC 73 ms
16,740 KB
testcase_17 AC 90 ms
17,800 KB
testcase_18 AC 143 ms
23,348 KB
testcase_19 AC 146 ms
23,192 KB
testcase_20 AC 187 ms
23,240 KB
testcase_21 AC 184 ms
23,208 KB
testcase_22 AC 188 ms
23,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*
def M():return map(int,input().split())
n,m,c=M()
a=list(M())
b=sorted(list(M()))
C=0
for i in a:C+=m-bisect_right(b,c//i)
print(C/n/m)
0