結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー NoneNone
提出日時 2021-04-28 23:37:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 359,680 KB
最終ジャッジ日時 2024-07-07 22:55:35
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 47 ms
64,368 KB
testcase_02 AC 51 ms
65,408 KB
testcase_03 AC 37 ms
56,704 KB
testcase_04 AC 51 ms
67,072 KB
testcase_05 WA -
testcase_06 AC 49 ms
64,896 KB
testcase_07 AC 48 ms
64,768 KB
testcase_08 WA -
testcase_09 AC 50 ms
62,848 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 291 ms
182,656 KB
testcase_13 AC 456 ms
325,376 KB
testcase_14 AC 276 ms
213,120 KB
testcase_15 AC 169 ms
128,896 KB
testcase_16 AC 177 ms
116,992 KB
testcase_17 AC 96 ms
84,864 KB
testcase_18 AC 309 ms
218,880 KB
testcase_19 AC 300 ms
227,864 KB
testcase_20 AC 218 ms
133,376 KB
testcase_21 AC 579 ms
359,552 KB
testcase_22 AC 591 ms
359,424 KB
testcase_23 AC 606 ms
359,680 KB
testcase_24 AC 36 ms
52,096 KB
testcase_25 AC 37 ms
52,352 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]
    print(res%MOD)
0