結果
| 問題 | No.1280 Beyond C |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-07 17:49:23 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 245 bytes |
| 記録 | |
| コンパイル時間 | 177 ms |
| コンパイル使用メモリ | 85,268 KB |
| 実行使用メモリ | 113,056 KB |
| 最終ジャッジ日時 | 2026-04-03 09:32:35 |
| 合計ジャッジ時間 | 1,941 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 18 |
ソースコード
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)