結果
問題 | No.1067 #いろいろな色 / Red and Blue and more various colors (Middle) |
ユーザー | titia |
提出日時 | 2020-05-29 23:03:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 417 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 835,152 KB |
最終ジャッジ日時 | 2024-11-06 07:22:59 |
合計ジャッジ時間 | 8,584 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | OLE | - |
testcase_12 | OLE | - |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import sys input = sys.stdin.readline N,Q=map(int,input().split()) A=sorted(map(int,input().split()),reverse=True) B=[list(map(int,input().split())) for i in range(Q)] mod=998244353 DP=[[0]*(N+3) for i in range(N+1)] DP[0][0]=1 for i in range(N): a=A[i] for j in range(N,-1,-1): DP[i+1][j]=(DP[i][j]*(a-1)+DP[i][j-1])%mod print(DP) import bisect AX=list(reversed(A)) KR=[1] for a in AX: KR.append(KR[-1]*a%mod) KR.reverse() for l,r,x in B: ANS=0 for k in range(l,r+1): t=bisect.bisect_left(AX,k) ANS^=DP[N-t][x]*KR[N-t]%mod print(ANS)