結果

問題 No.1349 Subset Product Queries
ユーザー tpynerivertpyneriver
提出日時 2021-01-16 17:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,197 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 268,416 KB
最終ジャッジ日時 2024-11-27 21:42:41
合計ジャッジ時間 20,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 50 ms
61,184 KB
testcase_04 AC 51 ms
61,952 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 48 ms
59,008 KB
testcase_07 AC 49 ms
60,800 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 54 ms
62,080 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 1,197 ms
264,320 KB
testcase_12 AC 1,062 ms
242,304 KB
testcase_13 AC 1,069 ms
241,792 KB
testcase_14 AC 1,089 ms
249,984 KB
testcase_15 AC 1,120 ms
253,056 KB
testcase_16 AC 1,187 ms
266,112 KB
testcase_17 AC 811 ms
196,224 KB
testcase_18 AC 249 ms
93,568 KB
testcase_19 AC 210 ms
88,448 KB
testcase_20 AC 949 ms
222,848 KB
testcase_21 AC 919 ms
244,096 KB
testcase_22 AC 677 ms
193,248 KB
testcase_23 AC 921 ms
233,472 KB
testcase_24 AC 632 ms
173,312 KB
testcase_25 AC 788 ms
213,888 KB
testcase_26 AC 1,008 ms
268,416 KB
testcase_27 AC 721 ms
198,272 KB
testcase_28 AC 716 ms
198,272 KB
testcase_29 AC 697 ms
195,224 KB
testcase_30 AC 738 ms
201,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
    
N, Q, P = map(int, readline().split())
A = list(map(int, readline().split()))
dp = [[-1]*(P+2) for _ in range(N+1)]
dp[0][P+1] = 0
for i in range(N):
    a = A[i]
    for p in range(P+2):
        dp[i+1][p] = max(dp[i+1][p], dp[i][p])
        dp[i+1][p*a%P] = max(dp[i+1][p*a%P], dp[i][p])
    dp[i+1][a] = i+1
    

Ans = [None]*Q
for qu in range(Q):
    l, r, x = map(int, readline().split())
    if dp[r][x] >= l:
        Ans[qu] = 'Yes'
    else:
        Ans[qu] = 'No'

print('\n'.join(Ans))
0