結果
問題 | No.2710 How many more? |
ユーザー | かもめのうで |
提出日時 | 2024-03-31 14:57:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 93,340 KB |
最終ジャッジ日時 | 2024-09-30 20:08:05 |
合計ジャッジ時間 | 6,266 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,820 KB |
testcase_01 | AC | 41 ms
52,664 KB |
testcase_02 | AC | 335 ms
85,136 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 184 ms
82,568 KB |
testcase_06 | WA | - |
testcase_07 | AC | 197 ms
76,664 KB |
testcase_08 | AC | 173 ms
78,188 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 279 ms
80,396 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 39 ms
53,056 KB |
ソースコード
from bisect import bisect_left n, q = map(int, input().split()) a = list(map(int, input().split())) b = sorted(a) cnt = [-1]*n for i, ai in enumerate(a): junnni = bisect_left(b, ai) cnt[i] = junnni for _ in range(q): x, y = map(int, input().split()) x -= 1 y -= 1 print(max(0, cnt[x]-cnt[y]-1))