結果

問題 No.2931 Shibuya 109
ユーザー kusirakusirakusirakusira
提出日時 2024-08-25 13:22:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,327 ms / 4,000 ms
コード長 536 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 178,312 KB
最終ジャッジ日時 2024-10-09 10:12:52
合計ジャッジ時間 17,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,148 ms
76,436 KB
testcase_01 AC 1,308 ms
178,112 KB
testcase_02 AC 1,239 ms
178,284 KB
testcase_03 AC 1,312 ms
178,024 KB
testcase_04 AC 1,327 ms
178,172 KB
testcase_05 AC 1,233 ms
178,176 KB
testcase_06 AC 1,224 ms
178,312 KB
testcase_07 AC 294 ms
129,196 KB
testcase_08 AC 1,011 ms
86,108 KB
testcase_09 AC 998 ms
129,344 KB
testcase_10 AC 985 ms
177,396 KB
testcase_11 AC 36 ms
52,684 KB
testcase_12 AC 36 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# "9" の個数の累積和
B = [0]
for i in range(n):
    B.append(B[-1] + (1 if A[i] == 9 else 0))

# "1" の位置
idx = []
for i in range(n):
    if(A[i] == 1):
        idx.append(i)

for _ in range(q):
    l, r = map(int,input().split())
    l -= 1
    r -= 1
    
    # A[l:r]内の"9"の個数
    a = B[r+1] - B[l]
    
    # "1"による寄与
    b = 0
    for i in idx:
        if(l <= i <= r):
            b += (r - i)
    
    ans = a + b
    print(ans)

0