結果

問題 No.2931 Shibuya 109
ユーザー titiatitia
提出日時 2024-11-27 06:11:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,033 ms / 4,000 ms
コード長 408 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,124 KB
最終ジャッジ日時 2024-11-27 06:11:46
合計ジャッジ時間 22,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,596 ms
10,880 KB
testcase_01 AC 1,428 ms
19,508 KB
testcase_02 AC 2,033 ms
27,192 KB
testcase_03 AC 1,555 ms
35,124 KB
testcase_04 AC 1,721 ms
27,288 KB
testcase_05 AC 1,543 ms
27,316 KB
testcase_06 AC 1,687 ms
27,320 KB
testcase_07 AC 321 ms
18,632 KB
testcase_08 AC 1,111 ms
12,460 KB
testcase_09 AC 1,074 ms
18,784 KB
testcase_10 AC 1,534 ms
26,984 KB
testcase_11 AC 28 ms
10,496 KB
testcase_12 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

SUM=[0]
for a in A:
    SUM.append(SUM[-1])
    if a==9:
        SUM[-1]+=1

ONE=[]
for i in range(N):
    if A[i]==1:
        ONE.append(i)

for tests in range(Q):
    l,r=map(int,input().split())
    l-=1
    ANS=SUM[r]-SUM[l]

    for x in ONE:
        if l<=x<r:
            ANS+=r-x-1

    print(ANS)
0