結果

問題 No.1280 Beyond C
ユーザー flippergoflippergo
提出日時 2020-12-22 18:41:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 97,824 KB
最終ジャッジ日時 2024-09-21 14:17:07
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,480 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 45 ms
52,480 KB
testcase_05 AC 42 ms
52,324 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 45 ms
52,096 KB
testcase_09 AC 41 ms
51,988 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 52 ms
61,132 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 50 ms
59,264 KB
testcase_14 AC 52 ms
60,160 KB
testcase_15 AC 125 ms
90,392 KB
testcase_16 AC 107 ms
87,604 KB
testcase_17 AC 122 ms
90,812 KB
testcase_18 AC 123 ms
97,024 KB
testcase_19 AC 121 ms
96,936 KB
testcase_20 AC 177 ms
97,424 KB
testcase_21 AC 160 ms
97,824 KB
testcase_22 AC 163 ms
97,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
N,M,C = map(int,input().split())
A = sorted(list(map(int,input().split())))
B = sorted(list(map(int,input().split())))
cnt = 0
for i in range(N):
    a = A[i]
    b = C//a
    ind = bisect_right(B,b)
    cnt += M-ind
print(cnt/(N*M))
0