結果

問題 No.989 N×Mマス計算(K以上)
ユーザー roarisroaris
提出日時 2020-03-13 18:15:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 90,660 KB
最終ジャッジ日時 2024-11-22 11:50:02
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,208 KB
testcase_01 AC 39 ms
53,684 KB
testcase_02 AC 40 ms
52,416 KB
testcase_03 AC 40 ms
52,952 KB
testcase_04 AC 39 ms
52,628 KB
testcase_05 AC 39 ms
53,560 KB
testcase_06 AC 38 ms
52,812 KB
testcase_07 AC 40 ms
52,532 KB
testcase_08 AC 40 ms
52,572 KB
testcase_09 AC 41 ms
53,016 KB
testcase_10 AC 104 ms
83,968 KB
testcase_11 AC 100 ms
88,988 KB
testcase_12 AC 103 ms
86,768 KB
testcase_13 AC 74 ms
82,728 KB
testcase_14 AC 119 ms
90,660 KB
testcase_15 AC 77 ms
77,784 KB
testcase_16 AC 83 ms
81,248 KB
testcase_17 AC 75 ms
80,736 KB
testcase_18 AC 83 ms
76,504 KB
testcase_19 AC 99 ms
89,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

N, M, K = map(int, input().split())
inp = input().split()
op = inp[0]
B = list(map(int, inp[1:]))
A = [int(input()) for _ in range(N)]
B.sort()
ans = 0

for Ai in A:
    if op=='+':
        Ci = K-Ai
    else:
        Ci = (K+Ai-1)//Ai
        
    ans += M-bisect_left(B, Ci)

print(ans)
0