結果
問題 | No.434 占い |
ユーザー | firiexp |
提出日時 | 2019-11-26 23:19:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,616 bytes |
コンパイル時間 | 881 ms |
コンパイル使用メモリ | 87,748 KB |
最終ジャッジ日時 | 2024-11-14 21:53:26 |
合計ジャッジ時間 | 2,062 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:31:19: error: variable 'std::array<int, 9> inv' has initializer but incomplete type 31 | array<int, 9> inv{0, 1, 5, 0, 7, 2, 0, 4, 8}; | ^~~
ソースコード
#include <limits> #include <iostream> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> static const int MOD = 1000000007; using ll = long long; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208; template <class T, class U> vector<T> make_v(U size, const T& init){ return vector<T>(static_cast<size_t>(size), init); } template<class... Ts, class U> auto make_v(U size, Ts... rest) { return vector<decltype(make_v(rest...))>(static_cast<size_t>(size), make_v(rest...)); } template<class T> void chmin(T &a, const T &b){ a = (a < b ? a : b); } template<class T> void chmax(T &a, const T &b){ a = (a > b ? a : b); } int main() { int m = 100001; vector<int> fact(m, 1), zeros(m, 0); array<int, 9> inv{0, 1, 5, 0, 7, 2, 0, 4, 8}; for (int i = 1; i < m; ++i) { int x = i; zeros[i] = zeros[i-1]; while(x % 3 == 0) x /= 3, zeros[i]++; fact[i] = fact[i-1]*x%9; } auto binom = [&](int n, int m){ int z = zeros[n]-zeros[m]-zeros[n-m]; if(z >= 2) return 0; return fact[n]*inv[fact[m]]*inv[fact[n-m]]*(z ? 3 : 1)%9; }; int t; cin >> t; while(t--){ string s; cin >> s; int n = s.size(); if(s == string(n, '0')) { puts("0"); continue; } int ans = 8; for (int i = 0; i < n; ++i) { ans = (ans + binom(n-1, i)*(s[i]-'0'))%9; } cout << ans+1 << "\n"; } return 0; }