結果

問題 No.2710 How many more?
ユーザー KeeKee
提出日時 2024-03-31 23:25:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,247 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 87,224 KB
最終ジャッジ日時 2024-09-30 21:30:22
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,296 KB
testcase_01 AC 47 ms
54,528 KB
testcase_02 AC 245 ms
81,792 KB
testcase_03 AC 196 ms
82,276 KB
testcase_04 AC 186 ms
86,528 KB
testcase_05 AC 161 ms
80,704 KB
testcase_06 AC 159 ms
84,352 KB
testcase_07 AC 160 ms
78,176 KB
testcase_08 AC 145 ms
79,104 KB
testcase_09 AC 225 ms
84,096 KB
testcase_10 AC 169 ms
81,664 KB
testcase_11 AC 197 ms
80,384 KB
testcase_12 AC 245 ms
85,376 KB
testcase_13 AC 262 ms
86,656 KB
testcase_14 AC 256 ms
87,224 KB
testcase_15 AC 261 ms
87,168 KB
testcase_16 AC 264 ms
87,040 KB
testcase_17 AC 270 ms
87,040 KB
testcase_18 AC 44 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3

import bisect
import collections
import heapq
import itertools
import math
import os
import sys


def main():
    n, q = read_ints()
    A = read_ints()
    B = [-a for a in A]
    B.sort()

    for _ in range(q):
        x, y = read_ints()
        x -= 1
        y -= 1
        i = bisect.bisect_right(B, -A[x])
        j = bisect.bisect_left(B, -A[y])
        if j - i > 0:
            print(j - i)
        else:
            print(0)


###############################################################################

DEBUG = 'DEBUG' in os.environ


def inp():
    return sys.stdin.readline().rstrip()


def read_int():
    return int(inp())


def read_ints():
    return [int(e) for e in inp().split()]


def list2d(d1, d2, init=None):
    return [[init] * d2 for _ in range(d1)]


def list3d(d1, d2, d3, init=None):
    return [[[init] * d3 for _ in range(d2)] for _ in range(d1)]


def list4d(d1, d2, d3, d4, init=None):
    return [[[[init] * d4 for _ in range(d3)] for _ in range(d2)]
            for _ in range(d1)]


def debug(fmt, *args):
    if DEBUG:
        if args:
            print(fmt.format(*args), file=sys.stderr)
        else:
            print(fmt, file=sys.stderr)


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