結果
問題 | No.435 占い(Extra) |
ユーザー | ytft |
提出日時 | 2021-03-24 08:45:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,254 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 171,344 KB |
実行使用メモリ | 120,576 KB |
最終ジャッジ日時 | 2024-11-26 17:18:46 |
合計ジャッジ時間 | 8,827 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
42,240 KB |
testcase_01 | AC | 27 ms
42,236 KB |
testcase_02 | AC | 28 ms
42,240 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
42,232 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 29 ms
43,008 KB |
testcase_11 | WA | - |
testcase_12 | MLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | MLE | - |
testcase_19 | WA | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | WA | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int M=10000000; vector<int> table(M); vector<int> l2={0,0,1,0,2,5,0,4,3}; table[0]=-1; for(int i=1;i<M;i++){ if(i%3==0){ table[i]=table[i/3]+6; }else{ table[i]=l2[i%9]; } } int T; cin>>T; int n,a,b,x,m; vector<int> S,C; int cur; bool flg; int temp; int ans; for(int i=0;i<T;i++){ cin>>n>>x>>a>>b>>m; S.resize(n); C.resize(n); for(int j=0;j<n;j++){ S[j]=table[x%10]; x=((x^a)+b)%m; } cur=0; for(int j=0;j<n;j++){ C[j]=cur; cur+=(table[n-j-1]/6-table[j+1]/6)*6; cur+=(table[n-j-1]%6-table[j+1]%6+6)%6; } flg=true; ans=0; for(int j=0;j<n;j++){ if(S[j]==-1){ continue; } flg=false; temp=0; temp+=(S[j]/6+C[j]/6)*6; temp+=(S[j]%6+C[j]%6)%6; if(temp<6){ ans=(ans+(1<<(temp%6)))%9; }else if(temp<12){ ans=(ans+(1<<(temp%6))*3)%9; } } cout<<(flg?0:(ans+8)%9+1)<<endl; } }