結果

問題 No.989 N×Mマス計算(K以上)
ユーザー oshiioshii
提出日時 2020-03-20 19:14:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 430 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,576 KB
最終ジャッジ日時 2024-05-08 11:12:29
合計ジャッジ時間 7,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 34 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 TLE -
testcase_11 AC 154 ms
18,060 KB
testcase_12 AC 240 ms
18,244 KB
testcase_13 AC 90 ms
15,956 KB
testcase_14 AC 331 ms
20,576 KB
testcase_15 AC 121 ms
13,312 KB
testcase_16 AC 208 ms
15,424 KB
testcase_17 AC 216 ms
15,948 KB
testcase_18 AC 464 ms
13,184 KB
testcase_19 AC 1,563 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import math
n, m, k = map(int, input().split())
bw = list(map(str, input().split()))
a = [int(input()) for i in range(n)]
a.sort()
op = bw.pop(0)
b = [int(i) for i in bw]
b.sort()
ans = 0
if op == "+":
	c = bisect.bisect_left(b,k)
	ans += len(b[c:])*len(a)
	for i in b[:c]:
		d = bisect.bisect_left(a,k-i)
		ans += len(a[d:])
else:
	for i in range(n):
		ans += m - bisect.bisect_left(b,math.ceil(k/a[i]))
print (ans)
0