結果

問題 No.2931 Shibuya 109
ユーザー noriaokinoriaoki
提出日時 2024-10-14 11:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,396 ms / 4,000 ms
コード長 412 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 145,024 KB
最終ジャッジ日時 2024-10-14 11:52:58
合計ジャッジ時間 19,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,222 ms
76,112 KB
testcase_01 AC 1,326 ms
144,512 KB
testcase_02 AC 1,304 ms
144,304 KB
testcase_03 AC 1,353 ms
144,308 KB
testcase_04 AC 1,396 ms
145,024 KB
testcase_05 AC 1,249 ms
145,024 KB
testcase_06 AC 1,254 ms
144,508 KB
testcase_07 AC 322 ms
113,636 KB
testcase_08 AC 1,003 ms
82,560 KB
testcase_09 AC 980 ms
113,488 KB
testcase_10 AC 1,031 ms
144,092 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = list(map(int, input().split()))
one = set()
nine = [0]*(n+1)
for i in range(n):
    if a[i] == 1:
        one.add(i+1)
    elif a[i] == 9:
        nine[i+1] += 1
    nine[i+1] += nine[i]

ans = 0
for _ in range(q):
    l, r = map(int, input().split())
    ans = 0
    for o in one:
        if l <= o < r:
            ans += r - o
    ans += nine[r] - nine[l-1]
    print(ans)
0