結果

問題 No.1349 Subset Product Queries
ユーザー KoDKoD
提出日時 2021-01-15 14:47:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,176 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 262,784 KB
最終ジャッジ日時 2024-05-04 13:04:44
合計ジャッジ時間 19,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 50 ms
61,952 KB
testcase_04 AC 55 ms
63,616 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 49 ms
59,392 KB
testcase_07 AC 53 ms
62,848 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 52 ms
63,104 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 1,159 ms
257,536 KB
testcase_12 AC 1,058 ms
237,824 KB
testcase_13 AC 1,065 ms
237,568 KB
testcase_14 AC 1,079 ms
245,376 KB
testcase_15 AC 1,131 ms
248,704 KB
testcase_16 AC 1,176 ms
259,712 KB
testcase_17 AC 799 ms
191,744 KB
testcase_18 AC 233 ms
89,088 KB
testcase_19 AC 190 ms
83,712 KB
testcase_20 AC 945 ms
218,496 KB
testcase_21 AC 928 ms
240,000 KB
testcase_22 AC 687 ms
189,056 KB
testcase_23 AC 918 ms
229,248 KB
testcase_24 AC 640 ms
169,344 KB
testcase_25 AC 795 ms
209,792 KB
testcase_26 AC 1,024 ms
262,784 KB
testcase_27 AC 694 ms
194,048 KB
testcase_28 AC 701 ms
193,920 KB
testcase_29 AC 684 ms
190,848 KB
testcase_30 AC 720 ms
197,376 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)]
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