結果
問題 | No.2931 Shibuya 109 |
ユーザー | kusirakusira |
提出日時 | 2024-08-25 22:33:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,410 ms / 4,000 ms |
コード長 | 790 bytes |
コンパイル時間 | 888 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 178,584 KB |
最終ジャッジ日時 | 2024-10-09 10:13:13 |
合計ジャッジ時間 | 16,223 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,165 ms
76,416 KB |
testcase_01 | AC | 1,301 ms
178,332 KB |
testcase_02 | AC | 1,326 ms
178,584 KB |
testcase_03 | AC | 1,392 ms
178,332 KB |
testcase_04 | AC | 1,410 ms
178,452 KB |
testcase_05 | AC | 1,281 ms
178,460 KB |
testcase_06 | AC | 1,260 ms
178,204 KB |
testcase_07 | AC | 324 ms
129,408 KB |
testcase_08 | AC | 1,016 ms
84,992 KB |
testcase_09 | AC | 1,028 ms
129,380 KB |
testcase_10 | AC | 1,065 ms
177,212 KB |
testcase_11 | AC | 40 ms
51,712 KB |
testcase_12 | AC | 40 ms
51,584 KB |
ソースコード
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] in [0,1,9]) == False): print("WA") if(A[i] == 1): idx.append(i) if((len(idx) <= 8) == False): print("WA") for _ in range(q): l, r = map(int,input().split()) if((1 <= l <= r <= n) == False): print("WA") if((A[l-1] != 0) == False): print("WA") l -= 1 r -= 1 if(A[l]==0): print("WA") # 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)