結果

問題 No.1280 Beyond C
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-01 00:04:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 98,508 KB
最終ジャッジ日時 2024-11-01 00:04:08
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,064 KB
testcase_01 AC 40 ms
52,464 KB
testcase_02 AC 37 ms
52,348 KB
testcase_03 AC 38 ms
53,284 KB
testcase_04 AC 38 ms
53,004 KB
testcase_05 AC 37 ms
53,304 KB
testcase_06 AC 37 ms
52,764 KB
testcase_07 AC 37 ms
52,348 KB
testcase_08 AC 38 ms
52,400 KB
testcase_09 AC 38 ms
52,128 KB
testcase_10 AC 42 ms
52,404 KB
testcase_11 AC 48 ms
62,144 KB
testcase_12 AC 38 ms
52,396 KB
testcase_13 AC 46 ms
62,288 KB
testcase_14 AC 46 ms
61,000 KB
testcase_15 AC 98 ms
89,168 KB
testcase_16 AC 82 ms
84,880 KB
testcase_17 AC 91 ms
88,736 KB
testcase_18 AC 95 ms
97,028 KB
testcase_19 AC 112 ms
97,312 KB
testcase_20 AC 139 ms
98,508 KB
testcase_21 AC 141 ms
98,148 KB
testcase_22 AC 142 ms
98,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,C=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
a.sort()
b.sort()
p=0
for i in range(n):
  ok=m
  ng=-1
  while ok-ng>1:
    mid=(ok+ng)//2
    if b[mid]*a[i]>C:
      ok=mid
    else:
      ng=mid
  p+=m-ok
print(p/(n*m))
0