結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー convexineqconvexineq
提出日時 2020-05-29 23:30:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 1,256 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 325,452 KB
最終ジャッジ日時 2024-11-06 08:24:08
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,028 KB
testcase_01 AC 47 ms
64,712 KB
testcase_02 AC 52 ms
66,712 KB
testcase_03 AC 44 ms
59,148 KB
testcase_04 AC 48 ms
65,324 KB
testcase_05 AC 50 ms
67,068 KB
testcase_06 AC 48 ms
63,640 KB
testcase_07 AC 49 ms
64,704 KB
testcase_08 AC 49 ms
62,936 KB
testcase_09 AC 50 ms
63,328 KB
testcase_10 AC 50 ms
64,348 KB
testcase_11 AC 700 ms
254,180 KB
testcase_12 AC 498 ms
183,256 KB
testcase_13 AC 960 ms
325,452 KB
testcase_14 AC 560 ms
213,124 KB
testcase_15 AC 287 ms
129,156 KB
testcase_16 AC 269 ms
117,592 KB
testcase_17 AC 109 ms
84,644 KB
testcase_18 AC 575 ms
219,392 KB
testcase_19 AC 605 ms
228,044 KB
testcase_20 AC 340 ms
134,016 KB
testcase_21 AC 855 ms
78,336 KB
testcase_22 AC 859 ms
78,820 KB
testcase_23 AC 869 ms
78,396 KB
testcase_24 AC 39 ms
52,676 KB
testcase_25 AC 39 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,q = map(int,readline().split())
*a, = map(int,readline().split())
M = map(int,read().split())

x = [0]*(n+1)
x[0] = 1
MOD = 998244353
def mul(x,v):
    for j in range(n,0,-1):
        x[j] *= v
        x[j] = (x[j]+x[j-1])%MOD
    x[0] = x[0]*v%MOD

def div(x,v):
    if v==0:
        for j in range(n):
            x[j] = x[j+1]
        x[-1] = 0
        return 
    
    for j in range(1,n+1):
        x[j] += x[j-1]*v
        x[j] %= MOD
    
    

for ai in a:
    mul(x,ai-1)


Q = [list(map(int,i)) for i in zip(M,M,M)]
#print(Q)


res = [0]*q


a.sort()
R = []
v = -1
for i in a:
    if v != i: R.append(x[:])
    v = i
    c = pow(i-1,MOD-2,MOD)
    cc = 1
    div(x,-c)
    cc = (cc*i*c)%MOD    

    if i!=1:
        for i in range(n+1):
            x[i] = x[i]*cc%MOD

R.append(x)
#print(R)
#print(a)
a = sorted(set(a))


from bisect import bisect_left
for l,r,p in Q:
    res = 0
    v = 0
    for i in range(l,r+1):
        res ^= R[bisect_left(a,i)][p]
        
        
        #print(res)
            
    print(res%MOD)
        
#print(24^36^48,26^21^12,9^3,1)
        
        
            
    
    
    
    
    
    
    
    
    


0