結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー wattaiheiwattaihei
提出日時 2020-05-29 22:54:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 219,108 KB
最終ジャッジ日時 2024-11-06 07:04:38
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,672 KB
testcase_01 AC 52 ms
64,348 KB
testcase_02 AC 58 ms
66,744 KB
testcase_03 AC 43 ms
57,600 KB
testcase_04 AC 56 ms
68,984 KB
testcase_05 AC 54 ms
67,468 KB
testcase_06 AC 53 ms
65,412 KB
testcase_07 AC 51 ms
64,736 KB
testcase_08 AC 50 ms
64,328 KB
testcase_09 AC 50 ms
63,552 KB
testcase_10 AC 50 ms
63,120 KB
testcase_11 AC 310 ms
165,744 KB
testcase_12 AC 273 ms
130,540 KB
testcase_13 AC 339 ms
201,292 KB
testcase_14 AC 211 ms
144,960 KB
testcase_15 AC 149 ms
102,988 KB
testcase_16 AC 176 ms
97,048 KB
testcase_17 AC 88 ms
80,660 KB
testcase_18 AC 252 ms
148,852 KB
testcase_19 AC 229 ms
152,816 KB
testcase_20 AC 213 ms
105,760 KB
testcase_21 AC 444 ms
219,108 KB
testcase_22 AC 441 ms
219,028 KB
testcase_23 AC 439 ms
218,920 KB
testcase_24 AC 38 ms
52,528 KB
testcase_25 AC 38 ms
53,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left

mod = 998244353

N, Q = map(int, input().split())
A = list(map(int, input().split()))
Query = [list(map(int, input().split())) for _ in range(Q)]
A.sort(reverse=True)
B = A[::-1]

dp = [[1]]
for i, a in enumerate(A):
    ndp = [0]*(i+2)
    ndp[0] = dp[-1][0]*(a-1) % mod
    ndp[i+1] = 1
    for j in range(1, i+1):
        ndp[j] = (dp[-1][j]*(a-1) + dp[-1][j-1]) % mod
    dp.append(ndp)

C = [1]
for b in B:
    C.append(C[-1]*b%mod)

for l, r, p in Query:
    ans = 0
    for k in range(l, r+1):
        ma = N - bisect_left(B, k)
        if p < len(dp[ma]):
            ans ^= (dp[ma][p] * C[N-ma]) % mod
    print(ans%mod)
0