結果

問題 No.989 N×Mマス計算(K以上)
ユーザー イルカイルカ
提出日時 2024-06-11 04:58:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 94,524 KB
最終ジャッジ日時 2024-06-11 04:58:38
合計ジャッジ時間 3,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,604 KB
testcase_01 AC 39 ms
53,948 KB
testcase_02 AC 40 ms
53,792 KB
testcase_03 AC 40 ms
54,092 KB
testcase_04 AC 41 ms
52,152 KB
testcase_05 AC 41 ms
54,536 KB
testcase_06 AC 38 ms
53,560 KB
testcase_07 AC 37 ms
52,456 KB
testcase_08 AC 38 ms
53,576 KB
testcase_09 AC 38 ms
54,104 KB
testcase_10 AC 134 ms
85,948 KB
testcase_11 AC 137 ms
91,656 KB
testcase_12 AC 141 ms
89,476 KB
testcase_13 AC 112 ms
87,372 KB
testcase_14 AC 180 ms
94,524 KB
testcase_15 AC 97 ms
79,016 KB
testcase_16 AC 124 ms
82,772 KB
testcase_17 AC 108 ms
87,484 KB
testcase_18 AC 100 ms
77,552 KB
testcase_19 AC 135 ms
91,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Bをソートして、行iについて(A_i)op(B_j)がK未満である最大のjを二分探索で求めればよさそう
# 条件を変形してB_j<K-A_iまたはB_j<K/A_iとしたほうがよさそう
from bisect import bisect_left
N, M, K = map(int, input().split())
l = input().split()
op, B = l[0],sorted(list(map(int,sorted(l[1:]))))
A = [int(input()) for _ in range(N)]
def invOp(a,b):
    return a-b if op=="+" else a/b
cnt = 0
for i in range(N):
    j = bisect_left(B, invOp(K,A[i]))
    cnt += len(B) - j
print(cnt)
0