結果
問題 | No.2710 How many more? |
ユーザー | けん |
提出日時 | 2024-11-01 22:27:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 82,792 KB |
実行使用メモリ | 174,860 KB |
最終ジャッジ日時 | 2024-11-01 22:27:20 |
合計ジャッジ時間 | 5,778 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
55,052 KB |
testcase_01 | AC | 38 ms
55,548 KB |
testcase_02 | AC | 270 ms
130,552 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 115 ms
82,620 KB |
testcase_08 | AC | 120 ms
89,700 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 178 ms
109,176 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 42 ms
55,180 KB |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10**8) from collections import defaultdict N, Q = map(int, input().split()) A = list(map(int, input().split())) querys = [list(map(int, input().split())) for _ in range(Q)] a = list(set(A)) a.sort() info = defaultdict(int) for n, e in enumerate(a): info[e] = n + 1 # ゼッケンから順位 rank = defaultdict(int) for i, a in enumerate(A): rank[i + 1] = info[a] cnt = defaultdict(int) for a in A: cnt[a] += 1 s = [0] for e in sorted(list(set(A))): s.append(s[-1] + cnt[e]) for x, y in querys: rx, ry = rank[x], rank[y] print(max(0, s[-ry] - s[-rx] - 1))