結果

問題 No.1349 Subset Product Queries
ユーザー ace_amuroace_amuro
提出日時 2022-04-13 18:36:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-06-06 05:23:08
合計ジャッジ時間 8,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 275 ms
94,208 KB
testcase_12 AC 254 ms
84,096 KB
testcase_13 AC 253 ms
84,352 KB
testcase_14 AC 267 ms
95,872 KB
testcase_15 AC 262 ms
89,472 KB
testcase_16 AC 279 ms
94,976 KB
testcase_17 AC 221 ms
76,928 KB
testcase_18 AC 94 ms
27,136 KB
testcase_19 AC 88 ms
24,576 KB
testcase_20 AC 254 ms
93,568 KB
testcase_21 AC 276 ms
101,376 KB
testcase_22 AC 227 ms
79,488 KB
testcase_23 AC 266 ms
99,584 KB
testcase_24 AC 197 ms
69,632 KB
testcase_25 AC 241 ms
89,984 KB
testcase_26 AC 283 ms
101,376 KB
testcase_27 AC 219 ms
81,792 KB
testcase_28 AC 232 ms
81,792 KB
testcase_29 AC 218 ms
80,384 KB
testcase_30 AC 229 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<ctime>
#include<string>
#include<algorithm>
#include<vector>
#include<queue>
#include<stack>
#include<map>
using namespace std;
typedef long long LL;
const int MR=5005;
int Q,n,p,a[MR],dp[MR][MR];
int L,R,K;
int main(){
    scanf("%d%d%d",&n,&Q,&p);
    for(int i=1;i<=n;i++) scanf("%d",a+i);
    for(int i=1;i<=n;i++){
        dp[i][a[i]%p]=i;
    }
    for(int i=0;i<n;i++){
        for(int j=0;j<p;j++){
            dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
            dp[i+1][j*a[i+1]%p]=max(dp[i+1][j*a[i+1]%p],dp[i][j]);
        }
    }
    // for(int j=0;j<p;j++)printf("%2d",j);printf("\n");
    // for(int i=1;i<=n;i++){
    //     for(int j=0;j<p;j++)printf("%2d",dp[i][j]);printf("\n");
    // }
    for(;Q>0;Q--){
        scanf("%d%d%d",&L,&R,&K);
        if(dp[R][K]>=L){
            printf("Yes\n");
        }
        else{
            printf("No\n");
        }
    }
    return 0;
}
0