結果

問題 No.1280 Beyond C
ユーザー mkawa2mkawa2
提出日時 2020-11-07 10:16:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,788 KB
最終ジャッジ日時 2024-07-22 14:22:12
合計ジャッジ時間 2,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 27 ms
11,008 KB
testcase_15 AC 109 ms
19,716 KB
testcase_16 AC 83 ms
19,368 KB
testcase_17 AC 104 ms
20,608 KB
testcase_18 AC 126 ms
26,380 KB
testcase_19 AC 110 ms
26,208 KB
testcase_20 AC 190 ms
26,788 KB
testcase_21 AC 197 ms
26,708 KB
testcase_22 AC 196 ms
26,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

# input=sys.stdin.buffer.readline
input=sys.stdin.readline

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(input())
def MI(): return map(int, input().split())
def MI1(): return map(int1, input().split())
def LI(): return list(map(int, input().split()))
def LI1(): return list(map(int1, input().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return input()[:-1]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n,m,c=MI()
nm=n*m
aa=LI()
bb=LI()
aa.sort()
bb.sort()
ans=0
j=m-1
for a in aa:
    while j>=0 and a*bb[j]>c:j-=1
    if j<0:break
    ans+=(j+1)/nm
print(1-ans)
0