結果

問題 No.1349 Subset Product Queries
ユーザー ああいいああいい
提出日時 2022-06-12 15:42:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,592 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 263,040 KB
最終ジャッジ日時 2024-09-23 04:00:02
合計ジャッジ時間 28,829 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 43 ms
53,120 KB
testcase_03 AC 51 ms
61,696 KB
testcase_04 AC 55 ms
63,744 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 44 ms
59,520 KB
testcase_07 AC 50 ms
62,360 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 53 ms
63,136 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 1,551 ms
258,176 KB
testcase_12 AC 1,439 ms
238,084 KB
testcase_13 AC 1,436 ms
237,704 KB
testcase_14 AC 1,473 ms
245,244 KB
testcase_15 AC 1,505 ms
248,960 KB
testcase_16 AC 1,592 ms
259,876 KB
testcase_17 AC 1,190 ms
191,900 KB
testcase_18 AC 640 ms
89,692 KB
testcase_19 AC 601 ms
83,840 KB
testcase_20 AC 1,331 ms
217,812 KB
testcase_21 AC 1,322 ms
240,732 KB
testcase_22 AC 1,068 ms
189,432 KB
testcase_23 AC 1,298 ms
229,632 KB
testcase_24 AC 1,018 ms
169,044 KB
testcase_25 AC 1,203 ms
210,688 KB
testcase_26 AC 1,418 ms
263,040 KB
testcase_27 AC 1,105 ms
193,680 KB
testcase_28 AC 1,093 ms
194,048 KB
testcase_29 AC 1,089 ms
191,000 KB
testcase_30 AC 1,114 ms
197,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
    a = A[i]
    for j in range(P):
        dp[i + 1][j] = max(dp[i + 1][j],dp[i][j])
        dp[i + 1][j * a % P] = max(dp[i + 1][j * a % P],dp[i][j])
    dp[i + 1][a] = i + 1
for _ in range(Q):
    l,r,k = map(int,input().split())
    if dp[r][k] >= l:
        print('Yes')
    else:
        print('No')
        
0