結果

問題 No.989 N×Mマス計算(K以上)
ユーザー vwxyzvwxyz
提出日時 2023-07-15 04:52:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,456 KB
最終ジャッジ日時 2024-09-16 13:22:06
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 121 ms
13,952 KB
testcase_11 AC 108 ms
15,316 KB
testcase_12 AC 137 ms
14,952 KB
testcase_13 AC 72 ms
14,232 KB
testcase_14 AC 167 ms
16,456 KB
testcase_15 AC 65 ms
11,904 KB
testcase_16 AC 106 ms
13,252 KB
testcase_17 AC 71 ms
14,100 KB
testcase_18 AC 88 ms
12,544 KB
testcase_19 AC 110 ms
15,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import bisect

N,M,K=map(int,readline().split())
op,*B=readline().split()
for m in range(M):
    B[m]=int(B[m])
A=[int(readline()) for n in range(N)]
B.sort()
ans=0
for a in A:
    if op=="+":
        b=K-a
    else:
        b=(K+a-1)//a
    ans+=M-bisect.bisect_left(B,b)
print(ans)
0