結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー tktk_snsntktk_snsn
提出日時 2022-04-30 10:22:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 359,504 KB
最終ジャッジ日時 2024-06-29 15:58:13
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 44 ms
59,776 KB
testcase_02 AC 44 ms
59,520 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 44 ms
58,752 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 45 ms
60,032 KB
testcase_07 AC 46 ms
60,288 KB
testcase_08 AC 44 ms
59,520 KB
testcase_09 AC 44 ms
59,264 KB
testcase_10 AC 44 ms
60,160 KB
testcase_11 AC 448 ms
251,264 KB
testcase_12 AC 308 ms
181,976 KB
testcase_13 AC 581 ms
324,992 KB
testcase_14 AC 338 ms
205,312 KB
testcase_15 AC 181 ms
128,676 KB
testcase_16 AC 161 ms
113,556 KB
testcase_17 AC 71 ms
74,276 KB
testcase_18 AC 355 ms
205,220 KB
testcase_19 AC 376 ms
227,672 KB
testcase_20 AC 212 ms
133,120 KB
testcase_21 AC 727 ms
359,408 KB
testcase_22 AC 725 ms
359,504 KB
testcase_23 AC 729 ms
359,176 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 998244353


N, Q = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
prod = [1] * (N + 1)
for i, a in enumerate(A, 1):
    prod[i] = prod[i-1] * a % mod
A.reverse()
prod.reverse()

"""
dp[i,j]: i番目までみて、j個選んだ時の積の輪
"""
dp = [[0] * (N + 1) for _ in range(N + 1)]
dp[0][0] = 1
for i, a in enumerate(A, 1):
    for j in range(i):
        dp[i][j] += dp[i-1][j] * (a - 1)
        dp[i][j] %= mod
        dp[i][j+1] += dp[i-1][j]
        dp[i][j+1] %= mod

for _ in range(Q):
    L, R, P = map(int, input().split())

    res = 0
    i = 0
    for x in range(L, R+1)[::-1]:
        while i < N and A[i] >= x:
            i += 1
        cnt = dp[i][P] * prod[i] % mod
        res ^= cnt

    print(res % mod)
0