結果

問題 No.989 N×Mマス計算(K以上)
ユーザー tanon710tanon710
提出日時 2020-02-21 01:00:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,952 KB
最終ジャッジ日時 2024-10-08 19:32:24
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 204 ms
17,048 KB
testcase_11 AC 167 ms
17,480 KB
testcase_12 AC 218 ms
18,472 KB
testcase_13 AC 109 ms
15,536 KB
testcase_14 AC 297 ms
20,952 KB
testcase_15 AC 103 ms
13,312 KB
testcase_16 AC 178 ms
15,616 KB
testcase_17 AC 97 ms
15,400 KB
testcase_18 AC 153 ms
13,568 KB
testcase_19 AC 172 ms
17,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n,m,k=map(int,input().split())
tmp=list(map(str,input().split()))
op=tmp[0]
arr1=[int(tmp[i]) for i in range(1,m+1)]
arr2=[int(input()) for i in range(n)]
arr2=sorted(arr2)
ans=0
for i in range(m):
    if op=='+':
        pos=bisect.bisect_left(arr2,k-arr1[i])
        ans+=n-pos
    else:
        pos=bisect.bisect_left(arr2,(k+arr1[i]-1)//arr1[i])
        ans+=n-pos
print(ans)
0