結果

問題 No.2931 Shibuya 109
ユーザー tassei903tassei903
提出日時 2024-10-12 16:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 789 ms / 4,000 ms
コード長 758 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 145,312 KB
最終ジャッジ日時 2024-10-12 16:16:52
合計ジャッジ時間 8,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 604 ms
95,656 KB
testcase_01 AC 531 ms
145,020 KB
testcase_02 AC 789 ms
145,312 KB
testcase_03 AC 478 ms
144,780 KB
testcase_04 AC 624 ms
144,388 KB
testcase_05 AC 468 ms
144,900 KB
testcase_06 AC 567 ms
144,780 KB
testcase_07 AC 188 ms
113,152 KB
testcase_08 AC 377 ms
82,524 KB
testcase_09 AC 327 ms
113,536 KB
testcase_10 AC 603 ms
144,744 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


n, q = na()

a = na()
f = [i for i in range(n) if a[i] == 1]
rui = [0] * (n + 1)
for i in range(n):
    rui[i+1] = rui[i] + (a[i] == 9)
from bisect import bisect_left
for _ in range(q):
    l, r = na()
    l -= 1
    res = rui[r] - rui[l]
    while True:
        x = bisect_left(f, l)
        if x >= len(f) or f[x] >= r:
            break
        res += r - f[x] - 1
        l = f[x] + 1
    print(res)
0