結果

問題 No.989 N×Mマス計算(K以上)
ユーザー FromBooskaFromBooska
提出日時 2023-03-01 21:07:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-09-16 18:15:25
合計ジャッジ時間 3,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 42 ms
52,688 KB
testcase_10 AC 144 ms
85,760 KB
testcase_11 AC 138 ms
90,624 KB
testcase_12 AC 142 ms
88,448 KB
testcase_13 AC 112 ms
87,296 KB
testcase_14 AC 163 ms
92,800 KB
testcase_15 AC 112 ms
78,408 KB
testcase_16 AC 123 ms
81,920 KB
testcase_17 AC 111 ms
86,656 KB
testcase_18 AC 122 ms
76,928 KB
testcase_19 AC 136 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ARC037C - 億マス計算に近いけどそれよりも簡単
# B昇順ソートして、bisectで何個満たすか数えればいい

N, M, K = map(int, input().split())
op_B = list(map(str, input().split()))
op = op_B[0]
B = [int(b) for b in op_B[1:]]
B.sort()

count = 0
from bisect import *
for i in range(N):
    a = int(input())
    if op == '+':
        idx = bisect_left(B, K-a)
        count += M - idx
    elif op == '*':
        idx = bisect_left(B, K/a)
        count += M - idx        
print(count)
0