結果

問題 No.1280 Beyond C
ユーザー jensen
提出日時 2021-01-05 23:46:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 237 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2024-11-06 08:39:07
合計ジャッジ時間 5,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 TLE * 1 -- * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

[n,m,c]=list(map(int,input().split()))
a=list(map(int, input().split()))
b=list(map(int, input().split()))
count=0
s=n*m
for i in range(n):
    for j in range(m):
        x=a[i]*b[j]
        if(x>c):
            count+=1
print(count/s)  
0