結果

問題 No.989 N×Mマス計算(K以上)
ユーザー oshiioshii
提出日時 2020-03-20 19:08:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,684 KB
最終ジャッジ日時 2024-05-08 11:02:02
合計ジャッジ時間 6,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 28 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 27 ms
10,752 KB
testcase_10 TLE -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 80 ms
16,100 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 187 ms
15,204 KB
testcase_17 AC 193 ms
15,716 KB
testcase_18 AC 418 ms
13,312 KB
testcase_19 AC 1,491 ms
18,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
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,k//a[i])
print (ans)
0