結果

問題 No.1349 Subset Product Queries
ユーザー KoDKoD
提出日時 2021-01-15 14:43:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 262,272 KB
最終ジャッジ日時 2024-11-26 00:00:39
合計ジャッジ時間 21,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 56 ms
61,440 KB
testcase_04 AC 61 ms
63,488 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 50 ms
59,136 KB
testcase_07 AC 58 ms
62,336 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 60 ms
63,104 KB
testcase_10 AC 43 ms
52,224 KB
testcase_11 AC 1,275 ms
257,792 KB
testcase_12 AC 1,152 ms
238,208 KB
testcase_13 AC 1,143 ms
237,696 KB
testcase_14 AC 1,188 ms
244,992 KB
testcase_15 AC 1,253 ms
248,192 KB
testcase_16 AC 1,278 ms
259,460 KB
testcase_17 AC 868 ms
191,616 KB
testcase_18 AC 250 ms
89,088 KB
testcase_19 AC 210 ms
83,584 KB
testcase_20 AC 1,033 ms
217,984 KB
testcase_21 AC 1,006 ms
240,128 KB
testcase_22 AC 725 ms
189,184 KB
testcase_23 AC 997 ms
228,864 KB
testcase_24 AC 673 ms
169,472 KB
testcase_25 AC 853 ms
210,048 KB
testcase_26 AC 1,113 ms
262,272 KB
testcase_27 AC 764 ms
193,996 KB
testcase_28 AC 770 ms
194,048 KB
testcase_29 WA -
testcase_30 AC 787 ms
196,992 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