結果

問題 No.1349 Subset Product Queries
ユーザー KoDKoD
提出日時 2021-01-15 14:43:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 262,528 KB
最終ジャッジ日時 2024-05-04 12:52:43
合計ジャッジ時間 21,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,992 KB
testcase_03 AC 50 ms
61,952 KB
testcase_04 AC 54 ms
63,744 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 45 ms
59,264 KB
testcase_07 AC 51 ms
62,520 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 53 ms
63,360 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 1,281 ms
257,536 KB
testcase_12 AC 1,146 ms
238,116 KB
testcase_13 AC 1,154 ms
237,512 KB
testcase_14 AC 1,182 ms
244,864 KB
testcase_15 AC 1,221 ms
248,576 KB
testcase_16 AC 1,275 ms
259,200 KB
testcase_17 AC 864 ms
191,488 KB
testcase_18 AC 234 ms
89,472 KB
testcase_19 AC 198 ms
83,584 KB
testcase_20 AC 1,028 ms
218,112 KB
testcase_21 AC 995 ms
240,128 KB
testcase_22 AC 722 ms
188,928 KB
testcase_23 AC 999 ms
228,736 KB
testcase_24 AC 672 ms
169,088 KB
testcase_25 AC 859 ms
209,792 KB
testcase_26 AC 1,115 ms
262,528 KB
testcase_27 AC 763 ms
193,792 KB
testcase_28 AC 877 ms
194,176 KB
testcase_29 WA -
testcase_30 AC 793 ms
197,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

N, Q, P = map(int, input().split())
A = list(map(int, input().split()))

dp = [[-1] * P for _ in range(N + 1)]
dp[0][0] = 0
for i in range(N):
  for j in range(P):
    dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
    dp[i + 1][(j * A[i]) % P] = max(dp[i + 1][(j * A[i]) % P], dp[i][j])
  dp[i + 1][A[i]] = i

for _ in range(Q):
  l, r, k = map(int, input().split())
  l -= 1
  if dp[r][k] >= l:
    print("Yes")
  else:
    print("No")
0