結果
問題 | No.854 公平なりんご分配 |
ユーザー | snrnsidy |
提出日時 | 2021-11-01 01:45:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,331 bytes |
コンパイル時間 | 2,418 ms |
コンパイル使用メモリ | 203,528 KB |
実行使用メモリ | 40,704 KB |
最終ジャッジ日時 | 2024-10-09 13:21:10 |
合計ジャッジ時間 | 12,732 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,196 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 6 ms
5,248 KB |
testcase_23 | AC | 4 ms
5,248 KB |
testcase_24 | AC | 8 ms
5,248 KB |
testcase_25 | AC | 4 ms
5,248 KB |
testcase_26 | AC | 8 ms
5,248 KB |
testcase_27 | AC | 5 ms
5,248 KB |
testcase_28 | AC | 7 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 5 ms
5,248 KB |
testcase_31 | AC | 8 ms
5,248 KB |
testcase_32 | AC | 61 ms
28,672 KB |
testcase_33 | AC | 126 ms
17,024 KB |
testcase_34 | AC | 222 ms
38,272 KB |
testcase_35 | AC | 136 ms
31,008 KB |
testcase_36 | AC | 101 ms
5,248 KB |
testcase_37 | AC | 63 ms
27,136 KB |
testcase_38 | AC | 39 ms
22,528 KB |
testcase_39 | AC | 427 ms
40,704 KB |
testcase_40 | AC | 156 ms
15,360 KB |
testcase_41 | AC | 152 ms
26,128 KB |
testcase_42 | AC | 175 ms
37,888 KB |
testcase_43 | AC | 298 ms
26,624 KB |
testcase_44 | AC | 284 ms
35,328 KB |
testcase_45 | AC | 292 ms
10,244 KB |
testcase_46 | AC | 424 ms
34,940 KB |
testcase_47 | AC | 113 ms
20,864 KB |
testcase_48 | AC | 145 ms
37,884 KB |
testcase_49 | AC | 123 ms
38,780 KB |
testcase_50 | AC | 45 ms
28,416 KB |
testcase_51 | AC | 404 ms
36,804 KB |
testcase_52 | TLE | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; bool isprime[2001]; vector <int> prime; int A[100001]; int psum[100001][303]; int n,q; int P[100000]; int L[100000]; int R[100000]; long long int mypow(long long int x,long long int n,long long int m) { long long int res = 1; while(n > 0) { if(n%2==1) { res *= x; res%=m; } x *= x; x%=m; n/=2; } return res; } int main(void) { cin.tie(0); ios::sync_with_stdio(false); memset(isprime,true,sizeof(isprime)); for(int i=2;i<=2000;i++) { if(isprime[i]) { prime.push_back(i); for(int j=2*i;j<=2000;j+=i) { isprime[j] = false; } } } cin >> n; for(int i=1;i<=n;i++) { cin >> A[i]; } cin >> q; for(int i=0;i<q;i++) { cin >> P[i] >> L[i] >> R[i]; } for(int i=1;i<=n;i++) { for(int j=0;j<prime.size();j++) { psum[i][j] += psum[i-1][j]; } int temp = A[i]; for(int j=0;j<prime.size();j++) { if(temp==1) break; while(1) { if(temp%prime[j]!=0) break; temp/=prime[j]; psum[i][j]++; } } } for(int i=0;i<q;i++) { long long int val = 1; for(int j=0;j<prime.size();j++) { val*=mypow(prime[j],psum[R[i]][j] - psum[L[i]-1][j],P[i]); val%=P[i]; if(val==0) break; } if(val==0) { cout << "Yes" << '\n'; } else { cout << "NO" << '\n'; } } return 0; }