結果
問題 | No.2710 How many more? |
ユーザー | player |
提出日時 | 2024-04-04 15:59:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 108,420 KB |
最終ジャッジ日時 | 2024-10-01 00:25:28 |
合計ジャッジ時間 | 8,868 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,792 KB |
testcase_01 | AC | 40 ms
54,176 KB |
testcase_02 | AC | 489 ms
105,984 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 280 ms
99,296 KB |
testcase_06 | WA | - |
testcase_07 | AC | 181 ms
77,872 KB |
testcase_08 | AC | 189 ms
83,996 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 317 ms
89,864 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 40 ms
54,260 KB |
ソースコード
from collections import * n, q = map(int, input().split()) a = list(map(int, input().split())) b = [None] * n d = defaultdict(int) pl = defaultdict(int) for i in range(n): b[i] = (a[i], i) d[i] = a[i] pl[a[i]] += 1 b.sort() # ゼッケンiが全体で前から何番目か ans = [None] * n flg = False # print(pl) for i in range(n): di, p = b[i] # print(di, p) if i == 0: ans[p] = 0 former = p else: if d[former] == di: ans[p] = ans[former] flg = True else: if not flg: ans[p] = ans[former] + 1 else: ans[p] = ans[former] + pl[d[former]] flg = False former = p # print(ans) for _ in range(q): x, y = map(int, input().split()) x, y = x - 1, y - 1 if d[x] <= d[y]: print(0) else: print(ans[x] - ans[y]-1)