結果

問題 No.989 N×Mマス計算(K以上)
ユーザー _matumo__matumo_
提出日時 2020-02-25 11:58:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,376 KB
最終ジャッジ日時 2024-10-13 11:44:39
合計ジャッジ時間 4,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 533 ms
15,108 KB
testcase_11 AC 265 ms
17,232 KB
testcase_12 AC 513 ms
16,492 KB
testcase_13 AC 112 ms
15,520 KB
testcase_14 AC 796 ms
18,376 KB
testcase_15 AC 243 ms
12,544 KB
testcase_16 AC 454 ms
13,892 KB
testcase_17 AC 99 ms
15,600 KB
testcase_18 AC 447 ms
11,520 KB
testcase_19 AC 267 ms
17,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
F,*pB=input().split()
pb=sorted(int(s) for s in pB)

if F=='+' :fn=lambda x,y:x+y
else      :fn=lambda x,y:x*y

cn=0
for _ in range(N):
    A=int(input())
    ns=-1
    ne= M
    while ne-ns>1:
        n=(ns+ne)//2
        if fn(A,pb[n])<K:   ns=n
        else:               ne=n
    cn += M-ne

print(cn)
0