結果

問題 No.2931 Shibuya 109
ユーザー 👑 rin204rin204
提出日時 2024-10-13 17:04:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,336 ms / 4,000 ms
コード長 511 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 153,216 KB
最終ジャッジ日時 2024-10-13 17:04:20
合計ジャッジ時間 15,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,053 ms
75,876 KB
testcase_01 AC 1,271 ms
151,800 KB
testcase_02 AC 1,196 ms
152,840 KB
testcase_03 AC 1,336 ms
152,440 KB
testcase_04 AC 1,307 ms
153,216 KB
testcase_05 AC 1,190 ms
152,828 KB
testcase_06 AC 1,195 ms
152,848 KB
testcase_07 AC 283 ms
116,980 KB
testcase_08 AC 957 ms
83,216 KB
testcase_09 AC 976 ms
116,796 KB
testcase_10 AC 971 ms
152,172 KB
testcase_11 AC 37 ms
51,748 KB
testcase_12 AC 37 ms
51,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
A = list(map(int, input().split()))

nine = [0] * (n + 1)
cum = [0] * (n + 1)
cum2 = [0] * (n + 1)
for i, a in enumerate(A):
    nine[i + 1] = nine[i]
    cum[i + 1] = cum[i]
    if a == 9:
        nine[i + 1] += 1
        A[i] = 0
    elif a == 1:
        cum[i + 1] += 1

    cum2[i + 1] = cum2[i] + cum[i]


for _ in range(Q):
    l, r = map(int, input().split())
    l -= 1
    ans = nine[r] - nine[l]
    ans += cum2[r] - cum2[l]
    ans -= cum[l] * (r - l)
    print(ans)
0