結果
問題 | No.434 占い |
ユーザー | ytft |
提出日時 | 2021-03-22 13:30:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,098 bytes |
コンパイル時間 | 1,813 ms |
コンパイル使用メモリ | 175,512 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-05-03 03:10:58 |
合計ジャッジ時間 | 7,089 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 348 ms
6,944 KB |
testcase_09 | AC | 37 ms
6,940 KB |
testcase_10 | AC | 5 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | RE | - |
testcase_13 | AC | 353 ms
6,944 KB |
testcase_14 | AC | 39 ms
6,940 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<int> merge(vector<int> a,vector<int> b,int MOD){ int A=a.size(),B=b.size(); vector<int> ret(A+B-1); for(int i=0;i<A+B-1;i++){ for(int j=max(0,i+1-B);j<min(A,i+1);j++){ ret[i]=(ret[i]+a[j]*b[j-i+B-1])%MOD; } } return ret; } vector<int> C(int step,int MOD){ vector<int> two; while(step>0){ two.push_back(step%2); step=step>>1; } int M=two.size(); vector<vector<int>> temp(M,vector<int>()); temp[0]={1,1}; for(int i=1;i<M;i++){ temp[i]=merge(temp[i-1],temp[i-1],MOD); } vector<int> cur; cur={1}; for(int i=0;i<M;i++){ if(!two[i]){ continue; } cur=merge(cur,temp[i],MOD); } return cur; } int main(){ int T; cin>>T; string S; vector<int> c; int temp; for(int i=0;i<T;i++){ cin>>S; c=C(S.size()-1,9); temp=0; for(int i=0;i<S.size();i++){ temp=(temp+(S[i]-'0')*c[i])%9; } cout<<(temp+8)%9+1<<endl; } }