結果
問題 | No.435 占い(Extra) |
ユーザー | ytft |
提出日時 | 2021-03-22 14:54:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,643 bytes |
コンパイル時間 | 2,037 ms |
コンパイル使用メモリ | 173,244 KB |
実行使用メモリ | 90,124 KB |
最終ジャッジ日時 | 2024-11-24 01:13:01 |
合計ジャッジ時間 | 54,719 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 2 ms
10,624 KB |
testcase_03 | AC | 2 ms
21,648 KB |
testcase_04 | AC | 2 ms
9,900 KB |
testcase_05 | AC | 2 ms
9,896 KB |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
8,832 KB |
testcase_08 | AC | 7 ms
8,704 KB |
testcase_09 | AC | 6 ms
8,832 KB |
testcase_10 | AC | 66 ms
10,624 KB |
testcase_11 | AC | 62 ms
8,704 KB |
testcase_12 | AC | 881 ms
16,496 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 585 ms
10,624 KB |
testcase_15 | AC | 454 ms
21,648 KB |
testcase_16 | AC | 496 ms
10,624 KB |
testcase_17 | AC | 655 ms
21,652 KB |
testcase_18 | AC | 836 ms
16,500 KB |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 3 ms
10,624 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<int> merge(vector<int> a,int p,int MOD){ if(p==0){ int N=a.size()+1; vector<int> ret(N,1); for(int i=1;i<N-1;i++){ ret[i]=(a[i-1]+a[i])%MOD; } return ret; } int A=a.size(),N=A+pow(3,p); vector<int> ret(N); for(int i=0;i<N;i++){ if(0<=i-pow(3,p)+0 && i-pow(3,p)+0<a.size()){ ret[i]+=a[i-pow(3,p)+0]; } if(0<=i-pow(3,p)+pow(3,p-1) && i-pow(3,p)+pow(3,p-1)<a.size()){ ret[i]+=a[i-pow(3,p)+pow(3,p-1)]*3; } if(0<=i-pow(3,p)+pow(3,p-1)*2 && i-pow(3,p)+pow(3,p-1)*2<a.size()){ ret[i]+=a[i-pow(3,p)+pow(3,p-1)*2]*3; } if(0<=i-pow(3,p)+pow(3,p-1)*3 && i-pow(3,p)+pow(3,p-1)*3<a.size()){ ret[i]+=a[i-pow(3,p)+pow(3,p-1)*3]; } ret[i]%=MOD; } return ret; } vector<int> C(int step,int MOD){ vector<int> three; while(step>0){ three.push_back(step%3); step=step/3; } vector<int> cur={1}; for(int i=0;i<three.size();i++){ for(int j=0;j<three[i];j++){ cur=merge(cur,i,MOD); } } return cur; } int main(){ int T; cin>>T; long long n,x,a,b,m; int temp=0; vector<int> c; bool flg; for(int i=0;i<T;i++){ cin>>n>>x>>a>>b>>m; c=C(n-1,9); temp=0; temp=(temp+c[0]*(x%10))%9; flg=(x==0); for(int j=1;j<n;j++){ x=((x^a)+b)%m; if(x!=0)flg=false; temp=(temp+c[j]*(x%10))%9; } cout<<(flg?0:(temp+8)%9+1)<<endl; } }