結果

問題 No.2710 How many more?
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-03-31 14:03:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,936 KB
最終ジャッジ日時 2024-09-30 18:52:00
合計ジャッジ時間 13,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 903 ms
24,880 KB
testcase_03 AC 487 ms
25,160 KB
testcase_04 AC 353 ms
35,932 KB
testcase_05 AC 281 ms
23,244 KB
testcase_06 AC 308 ms
26,912 KB
testcase_07 AC 378 ms
12,160 KB
testcase_08 AC 285 ms
14,844 KB
testcase_09 AC 726 ms
26,556 KB
testcase_10 AC 417 ms
18,440 KB
testcase_11 AC 712 ms
18,220 KB
testcase_12 AC 973 ms
35,664 KB
testcase_13 AC 997 ms
36,844 KB
testcase_14 AC 1,020 ms
36,700 KB
testcase_15 AC 1,010 ms
36,912 KB
testcase_16 AC 997 ms
36,692 KB
testcase_17 AC 1,015 ms
36,936 KB
testcase_18 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int, input().split())
A = list(map(int, input().split()))

B = sorted(A)
D = {B[i]:i for i in range(len(B))}
E = {B[i]:i for i in range(len(B)-1, -1, -1)}

for _ in range(Q):
    x,y = map(int, input().split())
    i = E[A[x-1]]
    j = D[A[y-1]]
    print(max(0, i-j-1))
0