結果

問題 No.1280 Beyond C
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-11-07 17:50:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 98,480 KB
最終ジャッジ日時 2024-07-22 14:38:54
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 34 ms
52,008 KB
testcase_02 AC 32 ms
52,436 KB
testcase_03 AC 37 ms
52,960 KB
testcase_04 AC 34 ms
51,812 KB
testcase_05 AC 32 ms
52,456 KB
testcase_06 AC 32 ms
52,148 KB
testcase_07 AC 32 ms
52,188 KB
testcase_08 AC 37 ms
52,412 KB
testcase_09 AC 33 ms
52,332 KB
testcase_10 AC 35 ms
51,956 KB
testcase_11 AC 37 ms
59,048 KB
testcase_12 AC 34 ms
54,364 KB
testcase_13 AC 35 ms
58,700 KB
testcase_14 AC 37 ms
58,148 KB
testcase_15 AC 78 ms
88,440 KB
testcase_16 AC 74 ms
85,256 KB
testcase_17 AC 78 ms
89,792 KB
testcase_18 AC 81 ms
96,864 KB
testcase_19 AC 81 ms
96,608 KB
testcase_20 AC 111 ms
97,948 KB
testcase_21 AC 108 ms
98,256 KB
testcase_22 AC 116 ms
98,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
count = 0
now = m-1
a.sort()
b.sort()

for i in a:
    while now >= 0 and i*b[now] > c:
        now -= 1
    count += m-now-1
print(count/(m*n))
0