結果

問題 No.1280 Beyond C
ユーザー ThetaTheta
提出日時 2022-11-16 17:11:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,880 KB
最終ジャッジ日時 2024-09-17 13:09:05
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 146 ms
19,292 KB
testcase_16 AC 103 ms
19,212 KB
testcase_17 AC 126 ms
20,168 KB
testcase_18 AC 199 ms
25,752 KB
testcase_19 WA -
testcase_20 AC 275 ms
25,488 KB
testcase_21 AC 260 ms
25,620 KB
testcase_22 AC 273 ms
25,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right


def main():
    N, M, C = map(int, input().split())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))

    a.sort()
    b.sort()

    patterns = 0

    for a_elm in a:
        idx = bisect_right(b, C/a_elm)
        patterns += len(b) - idx

    print(patterns / (N*M))


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