結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,872 KB
testcase_01 AC 27 ms
30,272 KB
testcase_02 AC 25 ms
16,128 KB
testcase_03 AC 28 ms
29,808 KB
testcase_04 AC 27 ms
16,000 KB
testcase_05 AC 29 ms
30,956 KB
testcase_06 AC 28 ms
16,000 KB
testcase_07 AC 29 ms
36,216 KB
testcase_08 AC 29 ms
15,872 KB
testcase_09 AC 28 ms
36,344 KB
testcase_10 AC 28 ms
16,000 KB
testcase_11 AC 78 ms
36,472 KB
testcase_12 AC 28 ms
16,000 KB
testcase_13 AC 52 ms
36,676 KB
testcase_14 AC 74 ms
16,000 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=0
for a in A:
	x+=sum([a*b>c for b in B])
print(x/(n*m))
0