結果
問題 | No.1067 #いろいろな色 / Red and Blue and more various colors (Middle) |
ユーザー | convexineq |
提出日時 | 2020-05-29 23:14:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,272 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,596 KB |
最終ジャッジ日時 | 2024-11-06 07:47:53 |
合計ジャッジ時間 | 4,181 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,572 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
# 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 = [] for i in a: if not R or R[-1]!=x: R.append(x[:]) 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)) for l,r,p in Q: res = 0 v = 0 for i,ai in enumerate(a): if l <= ai <= r: if (ai - max(v,l-1))&1: res ^= R[i][p] v = ai #print(res) print(res) #print(24^36^48,26^21^12,9^3,1)