結果
問題 | No.1632 Sorting Integers (GCD of M) |
ユーザー | だれ |
提出日時 | 2021-07-30 22:45:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,475 bytes |
コンパイル時間 | 3,407 ms |
コンパイル使用メモリ | 185,120 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 02:05:54 |
合計ジャッジ時間 | 13,359 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | AC | 2 ms
5,376 KB |
testcase_60 | AC | 2 ms
5,376 KB |
testcase_61 | AC | 2 ms
5,376 KB |
testcase_62 | AC | 2 ms
5,376 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cmath> #include <cstdio> #include <fstream> #include <functional> #include <iomanip> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <unordered_set> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif #define GET_MACRO(_1, _2, _3, NAME, ...) NAME #define _rep(i, n) _rep2(i, 0, n) #define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++) #define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() using i64 = long long; template<class T, class U> bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true) : false; } template<class T, class U> bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true) : false; } template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;} template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);} template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;} template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;} template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;} using mint = modint1000000007; const i64 mod = 1000000007; i64 mypow(i64 a, i64 b){ i64 res = 1; while (b){ if (b & 1){ res *= a; } a *= a; b >>= 1; } return res; } int main(){ int n; cin >> n; vector<int> c(9); cin >> c; int f = 0; rep(i, 9){ f += (c[i] > 0? 1: 0); } vector<mint> dp(35); dp[0] = 1; rep(i, 34){ dp[i + 1] = dp[i] * pow_mod(10, mypow(2, i), mod) + dp[i]; } if (f == 1){ mint ans = 0; rep(i, 9){ if (c[i] > 0){ vector<int> h; rep(j, 31){ if ((c[i] >> j) & 1){ h.push_back(j); } } reverse(all(h)); for (auto j: h){ ans += dp[j] * pow_mod(10, c[i] - (1ll << j), mod); c[i] -= 1ll << j; } assert(c[i] == 0); ans *= i + 1; cout << ans.val() << endl; return 0; } } } assert(0); i64 d = 0; int odd = 0; int nfour = 0; rep(i, 9){ d += i64(i + 1) * c[i]; if (((i + 1) & 1) && c[i]) odd = 1; if (c[i] && ((i + 1) % 4)) nfour = 1; } if (d % 9 == 0 and nfour == 0){ cout << 36 << endl; return 0; } if (d % 9 == 0 and odd == 0){ cout << 18 << endl; return 0; } if (d % 3 == 0 and nfour == 0){ cout << 12 << endl; return 0; } if (d % 9 == 0){ cout << 9 << endl; return 0; } if (d % 3 == 0 and odd == 0){ cout << 6 << endl; return 0; } if (nfour == 0){ cout << 4 << endl; return 0; } if (d % 3 == 0){ cout << 3 << endl; return 0; } if (odd == 0){ cout << 2 << endl; return 0; } cout << 1 << endl; return 0; }