結果

問題 No.989 N×Mマス計算(K以上)
ユーザー yuly3yuly3
提出日時 2020-04-21 16:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-10-08 16:29:12
合計ジャッジ時間 2,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 98 ms
81,152 KB
testcase_11 AC 90 ms
83,456 KB
testcase_12 AC 95 ms
82,816 KB
testcase_13 AC 71 ms
79,744 KB
testcase_14 AC 119 ms
85,760 KB
testcase_15 AC 79 ms
76,544 KB
testcase_16 AC 86 ms
79,676 KB
testcase_17 AC 73 ms
78,848 KB
testcase_18 AC 82 ms
76,212 KB
testcase_19 AC 95 ms
84,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_left

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    N, M, K = map(int, rl().split())
    op, *B = input().split()
    B = [int(bi) for bi in B]
    A = [int(rl()) for _ in range(N)]
    
    B.sort()
    ans = 0
    if op == '+':
        for ai in A:
            ans += M - bisect_left(B, K - ai)
    else:
        for ai in A:
            ans += M - bisect_left(B, -(-K // ai))
    print(ans)


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