結果
問題 | No.435 占い(Extra) |
ユーザー | 🐬hec |
提出日時 | 2016-05-05 19:18:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,187 bytes |
コンパイル時間 | 1,825 ms |
コンパイル使用メモリ | 168,188 KB |
実行使用メモリ | 444,404 KB |
最終ジャッジ日時 | 2024-10-08 11:36:56 |
合計ジャッジ時間 | 17,177 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <bits/stdc++.h> #define _overload(_1,_2,_3,name,...) name #define _rep(i,n) _range(i,0,n) #define _range(i,a,b) for(int i=int(a);i<int(b);++i) #define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__) #define _rrep(i,n) _rrange(i,n,0) #define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i) #define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__) using namespace std; const int limit=10000000; int divisor[limit+1],prime[limit+1]; int factor[limit+1][10]; void init(){ int total=0; for(int i=2;i<=limit;++i) divisor[i]=i; for(int p=2;p<=limit;++p){ if(divisor[p]==p) prime[total++]=p; for(int i=0;i<total && prime[i]<=divisor[p];++i){ int tmp=prime[i]*p; if(tmp<=limit) divisor[tmp]=prime[i]; else break; } } for(int i=2;i<=limit;++i){ if(divisor[i]==i){ factor[i][i%9]++; }else{ rep(j,10) factor[i][j]=factor[i/divisor[i]][j]; factor[i][divisor[i]%9]++; } } return; } int power(int a,int n,int mod){ int b=1; while(n){ if(n&1) b=b*a%mod; a=a*a%mod; n>>=1; } return b; } const int t_limit=100000; const int n_limit=10000000; int main(void){ init(); int t=0,all=0; scanf("%d",&t); assert(1<=t&&t<=t_limit); rep(loop,t){ int n,x,a,b,m; scanf("%d %d %d %d %d",&n,&x,&a,&b,&m); assert(1<=n && n<=n_limit); assert(0<=x && x<=1e9); assert(0<=a && a<=1e9); assert(0<=b && b<=1e9); assert(1<=m && m<=1e9); all+=n; bool allzero=true; int ans=0,f[10]; fill(f,f+10,0); int num=n-1,den=1; rep(i,n){ int cur=x%10; x=((x^a)+b)%m; rep(j,10) cur=(cur*power(j,f[j],9))%9; ans=(ans+cur)%9; rep(j,10) f[j]+=factor[num][j]; rep(j,10) f[j]-=factor[den][j]; num--,den++; } if(allzero==false && ans==0) ans=9; printf("%d\n",ans); } assert(all<=n_limit); return 0; }