結果

問題 No.1280 Beyond C
ユーザー NoaSaberNoaSaber
提出日時 2021-04-02 21:57:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 96,944 KB
最終ジャッジ日時 2023-08-25 12:08:45
合計ジャッジ時間 5,357 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,404 KB
testcase_01 AC 68 ms
71,556 KB
testcase_02 AC 66 ms
71,696 KB
testcase_03 AC 69 ms
71,436 KB
testcase_04 AC 67 ms
71,372 KB
testcase_05 AC 70 ms
71,736 KB
testcase_06 AC 67 ms
71,564 KB
testcase_07 AC 68 ms
71,464 KB
testcase_08 AC 70 ms
71,512 KB
testcase_09 AC 69 ms
71,348 KB
testcase_10 AC 69 ms
71,696 KB
testcase_11 AC 75 ms
76,528 KB
testcase_12 AC 65 ms
71,508 KB
testcase_13 AC 72 ms
76,388 KB
testcase_14 AC 73 ms
76,504 KB
testcase_15 AC 134 ms
90,648 KB
testcase_16 AC 121 ms
88,156 KB
testcase_17 AC 135 ms
91,116 KB
testcase_18 AC 128 ms
95,560 KB
testcase_19 WA -
testcase_20 AC 193 ms
96,944 KB
testcase_21 AC 172 ms
96,908 KB
testcase_22 AC 197 ms
96,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,C=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
a.sort()
b.sort()
ans=0
for i in a:
    tmp=C/i
    ans+=len(b)-bisect.bisect_right(b,tmp)
print(ans/len(a)/len(b))
0