結果

問題 No.1280 Beyond C
ユーザー 👑 H20H20
提出日時 2021-06-21 13:39:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 96,140 KB
最終ジャッジ日時 2023-09-05 01:52:05
合計ジャッジ時間 6,170 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,488 KB
testcase_01 AC 77 ms
70,952 KB
testcase_02 AC 76 ms
71,376 KB
testcase_03 AC 77 ms
71,432 KB
testcase_04 AC 78 ms
71,156 KB
testcase_05 AC 78 ms
71,300 KB
testcase_06 AC 77 ms
71,192 KB
testcase_07 AC 77 ms
71,540 KB
testcase_08 AC 79 ms
71,360 KB
testcase_09 AC 78 ms
71,380 KB
testcase_10 AC 78 ms
71,188 KB
testcase_11 AC 86 ms
76,284 KB
testcase_12 AC 78 ms
71,312 KB
testcase_13 AC 82 ms
76,032 KB
testcase_14 AC 84 ms
76,412 KB
testcase_15 AC 146 ms
90,596 KB
testcase_16 AC 125 ms
88,024 KB
testcase_17 AC 141 ms
90,840 KB
testcase_18 AC 144 ms
95,468 KB
testcase_19 WA -
testcase_20 AC 198 ms
96,140 KB
testcase_21 AC 178 ms
96,052 KB
testcase_22 AC 201 ms
96,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,C = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
B.sort()
temp = 0
for a in A:
    ca = C/a
    temp += M - bisect.bisect_right(B,ca)
print(temp/M/N)
0