結果

問題 No.1280 Beyond C
ユーザー sibasyun
提出日時 2021-01-20 18:51:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 219 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,641,256 KB
最終ジャッジ日時 2024-12-23 09:16:26
合計ジャッジ時間 21,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 TLE * 5 MLE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#1280
N, M, C = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ab = [x * y for x in a for y in b]
winlist = [i for i in ab if i > C]
ans = len(winlist)/N/M
print(ans)
0