結果
問題 | No.2710 How many more? |
ユーザー | maccha |
提出日時 | 2024-03-31 15:11:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 332 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 63,076 KB |
最終ジャッジ日時 | 2024-09-30 20:22:32 |
合計ジャッジ時間 | 13,968 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,752 KB |
testcase_01 | AC | 24 ms
10,752 KB |
testcase_02 | AC | 896 ms
40,976 KB |
testcase_03 | AC | 613 ms
42,016 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 351 ms
13,820 KB |
testcase_08 | AC | 321 ms
21,104 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 631 ms
27,160 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 29 ms
10,752 KB |
ソースコード
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))] W=[[] for i in range(len(z))] p={} d=[0 for i in range(a)] for i in range(len(z)): p[z[i]]=i s=0 for i in range(a): w[p[x[i]]].add(i) d[i]=p[x[i]] for i in range(len(w)): s+=len(w[i]) W[i]=s for i in range(b): c=list(map(int,input().split())) c[0]-=1;c[1]-=1 #print(d[c[0]],d[c[1]]) print(max(W[d[c[0]]]-W[d[c[1]]]-1,0)) #print()