結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-22 22:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 360,320 KB
最終ジャッジ日時 2024-10-10 17:08:28
合計ジャッジ時間 9,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,552 KB
testcase_01 AC 50 ms
63,104 KB
testcase_02 AC 53 ms
65,664 KB
testcase_03 AC 41 ms
57,728 KB
testcase_04 AC 55 ms
67,456 KB
testcase_05 AC 52 ms
66,944 KB
testcase_06 AC 49 ms
63,872 KB
testcase_07 AC 49 ms
64,128 KB
testcase_08 AC 52 ms
63,104 KB
testcase_09 AC 48 ms
63,232 KB
testcase_10 AC 48 ms
62,976 KB
testcase_11 AC 652 ms
253,772 KB
testcase_12 AC 472 ms
183,040 KB
testcase_13 AC 786 ms
325,504 KB
testcase_14 AC 446 ms
213,320 KB
testcase_15 AC 252 ms
129,024 KB
testcase_16 AC 263 ms
117,400 KB
testcase_17 AC 108 ms
84,732 KB
testcase_18 AC 515 ms
219,572 KB
testcase_19 AC 488 ms
227,712 KB
testcase_20 AC 321 ms
133,740 KB
testcase_21 AC 974 ms
360,320 KB
testcase_22 AC 970 ms
359,960 KB
testcase_23 AC 988 ms
360,092 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from itertools import count

n,q = map(int,input().split())
A = list(map(int,input().split()))
Q = [list(map(int,input().split())) for i in range(q)]
A.sort()
mod = 998244353

dp = [[0]*(n+1) for i in range(n+1)]
dp[n][0] = 1
for i in range(n)[::-1]:
    a = A[i]
    for j in range(n+1):
        if dp[i+1][j] == 0:
            continue
        dp[i][j] += dp[i+1][j]*(a-1)%mod
        dp[i][j] %= mod
        dp[i][j+1] += dp[i+1][j]
        dp[i][j+1] %= mod

cumA = [1]
for a in A:
    cumA.append(cumA[-1]*a%mod)

for l,r,p in Q:
    ans = 0
    for i in range(l,r+1):
        ind = bisect.bisect_left(A,i)
        count = cumA[ind]*dp[ind][p]%mod
        ans ^= count
    print(ans%mod)
0