結果

問題 No.2710 How many more?
ユーザー 👑 Nafmo2Nafmo2
提出日時 2024-01-22 19:36:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,948 KB
最終ジャッジ日時 2024-09-28 06:28:36
合計ジャッジ時間 7,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 404 ms
84,736 KB
testcase_03 AC 285 ms
85,120 KB
testcase_04 AC 225 ms
91,476 KB
testcase_05 AC 202 ms
82,464 KB
testcase_06 AC 204 ms
87,808 KB
testcase_07 AC 248 ms
77,568 KB
testcase_08 AC 207 ms
78,464 KB
testcase_09 AC 350 ms
88,064 KB
testcase_10 AC 248 ms
82,224 KB
testcase_11 AC 342 ms
80,640 KB
testcase_12 AC 424 ms
89,728 KB
testcase_13 AC 458 ms
91,648 KB
testcase_14 AC 467 ms
91,888 KB
testcase_15 AC 456 ms
91,948 KB
testcase_16 AC 470 ms
91,648 KB
testcase_17 AC 464 ms
91,520 KB
testcase_18 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = sorted(A)
while Q > 0:
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    ans = bisect.bisect_left(B, A[x]) - bisect.bisect_right(B, A[y])
    print(max(ans, 0))
    Q -= 1
0