結果

問題 No.989 N×Mマス計算(K以上)
ユーザー hedwig100hedwig100
提出日時 2020-04-06 17:09:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,732 KB
最終ジャッジ日時 2024-07-06 13:33:26
合計ジャッジ時間 2,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 95 ms
16,688 KB
testcase_11 AC 107 ms
17,664 KB
testcase_12 AC 107 ms
17,952 KB
testcase_13 AC 73 ms
15,640 KB
testcase_14 AC 140 ms
20,732 KB
testcase_15 AC 54 ms
13,056 KB
testcase_16 AC 83 ms
15,360 KB
testcase_17 AC 71 ms
15,564 KB
testcase_18 AC 62 ms
13,312 KB
testcase_19 AC 100 ms
17,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
input = sys.stdin.readline
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from bisect import bisect_left,bisect_right

def main():
    n,m,k = map(int,input().split())
    li = input().split()
    op = li[0]
    b = [int(li[i]) for i in range(1,len(li))]
    a = [int(input()) for i in range(n)]
    a.sort()

    if op == '+':
        cnt = 0
        for i in range(m):
            cnt += n - bisect_left(a,k - b[i])
        print(cnt)
    
    elif op ==  '*':
        cnt = 0
        for i in range(m):
            cnt += n - bisect_left(a,-(-k//b[i]))
        print(cnt)

if __name__ =='__main__':
    main()  
0