結果

問題 No.989 N×Mマス計算(K以上)
ユーザー uni_pythonuni_python
提出日時 2020-07-28 22:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-06-28 21:00:16
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 34 ms
52,204 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 33 ms
52,480 KB
testcase_10 AC 101 ms
84,100 KB
testcase_11 AC 91 ms
89,176 KB
testcase_12 AC 98 ms
86,784 KB
testcase_13 AC 69 ms
81,536 KB
testcase_14 AC 115 ms
91,392 KB
testcase_15 AC 70 ms
77,696 KB
testcase_16 AC 80 ms
81,536 KB
testcase_17 AC 66 ms
82,048 KB
testcase_18 AC 84 ms
77,296 KB
testcase_19 AC 92 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,M,K=MI()
    Bo=input().split()
    op=Bo[0]
    B=list(map(int, Bo[1:]))
    A=[0]*N
    for i in range(N):
        A[i]=I()
        
    A.sort()
    B.sort()
    
    import bisect
    
    ans=0
    for i in range(N):
        a=A[i]
        if op=="+":
            target=K-a
        else:
            target=K/a
            
        num=bisect.bisect_left(B,target)
        ans+=M-num
        
    print(ans)
            


main()
0