結果
| 問題 |
No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-05-29 22:50:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 949 bytes |
| コンパイル時間 | 261 ms |
| コンパイル使用メモリ | 82,204 KB |
| 実行使用メモリ | 78,440 KB |
| 最終ジャッジ日時 | 2024-11-06 06:58:57 |
| 合計ジャッジ時間 | 8,723 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 23 |
ソースコード
# 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()
for i in a:
for j in range(q):
l,r,p = Q[j]
if l <= i <= r: res[j] ^= x[p]
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
#print(x)
print(*res,sep="\n")
convexineq