結果

問題 No.1280 Beyond C
ユーザー matriematrie
提出日時 2021-01-13 21:53:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 150 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 284,984 KB
最終ジャッジ日時 2024-11-22 18:09:21
合計ジャッジ時間 25,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,000 KB
testcase_01 AC 29 ms
270,736 KB
testcase_02 AC 29 ms
16,000 KB
testcase_03 AC 30 ms
276,384 KB
testcase_04 AC 31 ms
16,128 KB
testcase_05 AC 30 ms
17,700 KB
testcase_06 AC 30 ms
15,872 KB
testcase_07 AC 31 ms
211,200 KB
testcase_08 AC 29 ms
16,000 KB
testcase_09 AC 34 ms
10,624 KB
testcase_10 AC 32 ms
16,000 KB
testcase_11 AC 73 ms
284,984 KB
testcase_12 AC 30 ms
16,128 KB
testcase_13 AC 55 ms
279,992 KB
testcase_14 AC 63 ms
19,072 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
x=(sum([a*b>c for a in A for b in B]))
print(x/(n*m))
0