結果

問題 No.1280 Beyond C
ユーザー NoaSaberNoaSaber
提出日時 2021-04-02 21:57:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 97,652 KB
最終ジャッジ日時 2024-06-06 06:46:29
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,940 KB
testcase_01 AC 41 ms
52,628 KB
testcase_02 AC 40 ms
52,632 KB
testcase_03 AC 38 ms
53,428 KB
testcase_04 AC 38 ms
53,208 KB
testcase_05 AC 38 ms
52,620 KB
testcase_06 AC 38 ms
53,180 KB
testcase_07 AC 39 ms
52,072 KB
testcase_08 AC 38 ms
52,724 KB
testcase_09 AC 38 ms
53,204 KB
testcase_10 AC 38 ms
52,196 KB
testcase_11 AC 47 ms
60,804 KB
testcase_12 AC 39 ms
52,592 KB
testcase_13 AC 45 ms
59,588 KB
testcase_14 AC 47 ms
60,420 KB
testcase_15 AC 122 ms
89,924 KB
testcase_16 AC 97 ms
87,308 KB
testcase_17 AC 113 ms
90,492 KB
testcase_18 AC 109 ms
96,220 KB
testcase_19 WA -
testcase_20 AC 182 ms
97,324 KB
testcase_21 AC 160 ms
97,652 KB
testcase_22 AC 170 ms
97,352 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