結果

問題 No.1280 Beyond C
ユーザー titiatitia
提出日時 2020-11-06 21:27:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 10,492 KB
実行使用メモリ 23,488 KB
最終ジャッジ日時 2023-09-29 18:09:55
合計ジャッジ時間 2,728 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,852 KB
testcase_01 AC 14 ms
7,892 KB
testcase_02 AC 14 ms
7,824 KB
testcase_03 AC 15 ms
7,852 KB
testcase_04 AC 13 ms
7,916 KB
testcase_05 AC 13 ms
8,012 KB
testcase_06 AC 15 ms
7,896 KB
testcase_07 AC 15 ms
7,976 KB
testcase_08 AC 14 ms
7,900 KB
testcase_09 AC 15 ms
7,912 KB
testcase_10 AC 14 ms
7,824 KB
testcase_11 AC 15 ms
7,836 KB
testcase_12 AC 14 ms
7,888 KB
testcase_13 AC 15 ms
7,916 KB
testcase_14 AC 14 ms
7,860 KB
testcase_15 AC 108 ms
17,036 KB
testcase_16 AC 74 ms
16,620 KB
testcase_17 AC 94 ms
18,236 KB
testcase_18 AC 159 ms
23,488 KB
testcase_19 WA -
testcase_20 AC 216 ms
23,212 KB
testcase_21 AC 208 ms
23,064 KB
testcase_22 AC 216 ms
23,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import bisect

N,M,C=map(int,input().split())
A=sorted(map(int,input().split()))
B=sorted(map(int,input().split()))

ANS=0
for a in A:
    ANS+=bisect.bisect(B,C/a)

print(1-ANS/N/M)
0