結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,448 KB
testcase_01 AC 28 ms
30,272 KB
testcase_02 AC 31 ms
17,696 KB
testcase_03 AC 30 ms
29,936 KB
testcase_04 AC 28 ms
17,444 KB
testcase_05 AC 27 ms
30,872 KB
testcase_06 AC 27 ms
17,444 KB
testcase_07 AC 27 ms
36,216 KB
testcase_08 AC 28 ms
17,572 KB
testcase_09 AC 29 ms
36,344 KB
testcase_10 AC 28 ms
17,440 KB
testcase_11 AC 125 ms
36,404 KB
testcase_12 AC 28 ms
17,696 KB
testcase_13 AC 66 ms
36,536 KB
testcase_14 AC 97 ms
17,700 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:
	for b in B:
		if a*b>c:x+=1
print(x/(n*m))
0