結果
問題 | No.1280 Beyond C |
ユーザー |
![]() |
提出日時 | 2024-10-31 23:54:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 82,500 KB |
実行使用メモリ | 98,592 KB |
最終ジャッジ日時 | 2024-10-31 23:54:45 |
合計ジャッジ時間 | 4,115 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 WA * 1 |
ソースコード
n,m,C=map(int,input().split())a=list(map(int,input().split()))b=list(map(int,input().split()))a.sort()b.sort()from bisect import bisect_rightprint(sum(m-bisect_right(b,C/a[i]) for i in range(n))/(n*m))