結果

問題 No.1280 Beyond C
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-31 23:54:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 98,592 KB
最終ジャッジ日時 2024-10-31 23:54:45
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,836 KB
testcase_01 AC 39 ms
52,740 KB
testcase_02 AC 38 ms
53,312 KB
testcase_03 AC 39 ms
52,704 KB
testcase_04 AC 39 ms
52,704 KB
testcase_05 AC 40 ms
52,064 KB
testcase_06 AC 39 ms
53,568 KB
testcase_07 AC 40 ms
53,556 KB
testcase_08 AC 40 ms
52,212 KB
testcase_09 AC 39 ms
52,560 KB
testcase_10 AC 40 ms
52,792 KB
testcase_11 AC 49 ms
60,724 KB
testcase_12 AC 57 ms
52,516 KB
testcase_13 AC 46 ms
60,920 KB
testcase_14 AC 47 ms
60,180 KB
testcase_15 AC 122 ms
90,144 KB
testcase_16 AC 97 ms
87,572 KB
testcase_17 AC 116 ms
90,264 KB
testcase_18 AC 133 ms
96,888 KB
testcase_19 WA -
testcase_20 AC 181 ms
98,180 KB
testcase_21 AC 168 ms
98,592 KB
testcase_22 AC 187 ms
98,444 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()
from bisect import bisect_right
print(sum(m-bisect_right(b,C/a[i]) for i in range(n))/(n*m))
0