結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー NoneNone
提出日時 2021-04-28 23:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 359,808 KB
最終ジャッジ日時 2024-07-07 23:01:22
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 54 ms
64,128 KB
testcase_02 AC 59 ms
65,408 KB
testcase_03 AC 38 ms
57,216 KB
testcase_04 AC 53 ms
67,456 KB
testcase_05 AC 53 ms
67,584 KB
testcase_06 AC 51 ms
65,024 KB
testcase_07 AC 53 ms
64,896 KB
testcase_08 AC 48 ms
62,848 KB
testcase_09 AC 48 ms
63,232 KB
testcase_10 AC 49 ms
63,360 KB
testcase_11 AC 392 ms
253,440 KB
testcase_12 AC 319 ms
182,272 KB
testcase_13 AC 461 ms
325,632 KB
testcase_14 AC 282 ms
212,864 KB
testcase_15 AC 173 ms
128,768 KB
testcase_16 AC 179 ms
116,736 KB
testcase_17 AC 94 ms
84,608 KB
testcase_18 AC 311 ms
218,880 KB
testcase_19 AC 304 ms
227,712 KB
testcase_20 AC 219 ms
133,376 KB
testcase_21 AC 570 ms
359,424 KB
testcase_22 AC 574 ms
359,040 KB
testcase_23 AC 575 ms
359,808 KB
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 34 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
MOD=998244353
N,Q=map(int, input().split())
A=list(map(int, input().split()))
A.sort()
dp=[[0]*(N+1) for _ in range(N)]
dp[N-1][0]=A[N-1]-1
dp[N-1][1]=1
for r in range(N-1)[::-1]:
    for k in range(N-r+1):
        dp[r][k]=dp[r+1][k]*(A[r]-1)+dp[r+1][k-1]
        dp[r][k]%=MOD
dp2=[1]*(N+1)
for l in range(N):
    dp2[l]=A[l]*dp2[l-1]
    dp2[l]%=MOD
for _ in range(Q):
    l,r,p=map(int, input().split())
    res=0
    for i in range(l,r+1):
        j=bisect_left(A,i)
        res^=dp2[j-1]*dp[j][p]%MOD
    print(res%MOD)
0