結果

問題 No.989 N×Mマス計算(K以上)
ユーザー pluto77pluto77
提出日時 2020-02-26 16:15:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,548 KB
最終ジャッジ日時 2024-10-13 15:24:19
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 199 ms
16,760 KB
testcase_11 AC 147 ms
17,492 KB
testcase_12 AC 235 ms
17,384 KB
testcase_13 AC 84 ms
15,512 KB
testcase_14 AC 331 ms
20,548 KB
testcase_15 AC 113 ms
13,184 KB
testcase_16 AC 203 ms
15,424 KB
testcase_17 AC 76 ms
15,632 KB
testcase_18 AC 166 ms
12,928 KB
testcase_19 AC 138 ms
17,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki989
import bisect
n,m,k=map(int,input().split())
op=input().split()
b=[]
for i in range(1,len(op)):
 b.append(int(op[i]))
b.sort()
a=[]
for i in range(n):
 a.append(int(input()))
res=n*m
for i in a:
 if op[0]=='+':
  res-=bisect.bisect_left(b,k-i)
 else:
  res-=bisect.bisect_left(b,k/i)
print(res)
0