結果

問題 No.2710 How many more?
ユーザー macchamaccha
提出日時 2024-03-31 14:38:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,780 KB
最終ジャッジ日時 2024-09-30 19:46:52
合計ジャッジ時間 11,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 752 ms
36,392 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 334 ms
13,300 KB
testcase_08 AC 254 ms
19,304 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 600 ms
24,740 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
x=list(map(int,input().split()))
z=sorted(list(set(x)))
w=[set([]) for i in range(len(z))]
p={}
d=[0 for i in range(a)]
for i in range(len(z)):
    p[z[i]]=i
for i in range(a):
    w[p[x[i]]].add(i)
    d[i]=p[x[i]]
for i in range(b):
    c=list(map(int,input().split()))
    c[0]-=1;c[1]-=1
    print(max(d[c[0]]-d[c[1]]-1,0))
0