結果

問題 No.1280 Beyond C
ユーザー roarisroaris
提出日時 2020-11-14 01:48:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 95,812 KB
最終ジャッジ日時 2024-07-22 22:35:21
合計ジャッジ時間 3,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,604 KB
testcase_01 AC 41 ms
52,372 KB
testcase_02 AC 41 ms
52,420 KB
testcase_03 AC 40 ms
52,396 KB
testcase_04 AC 41 ms
52,980 KB
testcase_05 AC 40 ms
53,908 KB
testcase_06 AC 40 ms
52,208 KB
testcase_07 AC 40 ms
52,088 KB
testcase_08 AC 39 ms
52,536 KB
testcase_09 AC 40 ms
53,464 KB
testcase_10 AC 41 ms
52,428 KB
testcase_11 AC 49 ms
60,676 KB
testcase_12 AC 41 ms
54,440 KB
testcase_13 AC 47 ms
60,496 KB
testcase_14 AC 48 ms
60,488 KB
testcase_15 AC 111 ms
88,508 KB
testcase_16 AC 95 ms
86,360 KB
testcase_17 AC 108 ms
89,188 KB
testcase_18 AC 109 ms
94,456 KB
testcase_19 AC 105 ms
94,336 KB
testcase_20 AC 161 ms
95,812 KB
testcase_21 AC 158 ms
95,488 KB
testcase_22 AC 163 ms
95,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

N, M, C = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
b.sort()
c = 0

for ai in a:
    c += M-bisect_right(b, C//ai)

print(c/N/M)
0