結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 59 ms
61,568 KB
testcase_04 AC 57 ms
63,616 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 43 ms
59,136 KB
testcase_07 AC 50 ms
62,208 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 54 ms
63,104 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 1,130 ms
257,536 KB
testcase_12 AC 1,041 ms
237,696 KB
testcase_13 AC 1,063 ms
237,312 KB
testcase_14 AC 1,081 ms
244,992 KB
testcase_15 AC 1,091 ms
248,448 KB
testcase_16 AC 1,150 ms
258,944 KB
testcase_17 AC 775 ms
191,872 KB
testcase_18 AC 221 ms
89,088 KB
testcase_19 AC 189 ms
83,840 KB
testcase_20 AC 919 ms
218,112 KB
testcase_21 AC 905 ms
240,384 KB
testcase_22 AC 639 ms
188,800 KB
testcase_23 AC 896 ms
229,504 KB
testcase_24 AC 619 ms
169,216 KB
testcase_25 AC 774 ms
209,664 KB
testcase_26 AC 1,004 ms
262,144 KB
testcase_27 AC 703 ms
193,664 KB
testcase_28 AC 695 ms
193,920 KB
testcase_29 AC 678 ms
190,592 KB
testcase_30 AC 719 ms
196,736 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