結果

問題 No.1280 Beyond C
ユーザー r_ishidar_ishida
提出日時 2020-12-30 06:10:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,948 KB
最終ジャッジ日時 2024-04-16 02:30:15
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 32 ms
10,496 KB
testcase_15 AC 132 ms
19,524 KB
testcase_16 AC 96 ms
18,880 KB
testcase_17 AC 130 ms
20,256 KB
testcase_18 AC 136 ms
25,620 KB
testcase_19 AC 165 ms
25,876 KB
testcase_20 AC 239 ms
25,948 KB
testcase_21 AC 232 ms
25,776 KB
testcase_22 AC 229 ms
25,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

n,m,c = MI()
a = sorted(LI())
b = sorted(LI())
j = m-1
cnt = 0

for i in range(n):
    cnt += m-1-j
    while j >= 0:
        if a[i]*b[j] > c:
            cnt += 1
            j -= 1
        else:
            break

print(cnt/(m*n))
0