結果

問題 No.989 N×Mマス計算(K以上)
ユーザー takakintakakin
提出日時 2020-05-09 20:48:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,248 KB
最終ジャッジ日時 2024-07-06 04:56:09
合計ジャッジ時間 3,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 131 ms
15,104 KB
testcase_11 AC 147 ms
16,844 KB
testcase_12 AC 149 ms
16,360 KB
testcase_13 AC 95 ms
15,388 KB
testcase_14 AC 195 ms
18,248 KB
testcase_15 AC 71 ms
12,328 KB
testcase_16 AC 111 ms
14,572 KB
testcase_17 AC 94 ms
15,384 KB
testcase_18 AC 81 ms
12,672 KB
testcase_19 AC 136 ms
17,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m,k=map(int,input().split())
B=[str(i) for i in input().split()]
op=B[0]
B=[int(B[i]) for i in range(1,m+1)]
A=[int(input()) for _ in range(n)]
import bisect
A.sort()
ans=0
if op=="+":
  for b in B:
    ans+=n-bisect.bisect_left(A,k-b)
else:
  for b in B:
    ans+=n-bisect.bisect_left(A,(k-1)//b+1)
print(ans)
  
0