結果

問題 No.1280 Beyond C
ユーザー tamatotamato
提出日時 2020-11-06 21:27:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-07-22 12:11:45
合計ジャッジ時間 2,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 37 ms
52,864 KB
testcase_11 AC 48 ms
60,928 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 43 ms
60,032 KB
testcase_14 AC 48 ms
60,544 KB
testcase_15 AC 101 ms
88,632 KB
testcase_16 AC 89 ms
86,528 KB
testcase_17 AC 100 ms
89,216 KB
testcase_18 AC 108 ms
94,848 KB
testcase_19 AC 109 ms
94,848 KB
testcase_20 AC 141 ms
96,036 KB
testcase_21 AC 141 ms
96,188 KB
testcase_22 AC 146 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from bisect import bisect_right
    input = sys.stdin.readline

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

    cnt = 0
    for a in A:
        cnt += M - bisect_right(B, C // a)
    print(cnt / (N * M))


if __name__ == '__main__':
    main()
0