結果
問題 | No.1258 コインゲーム |
ユーザー | fastmath |
提出日時 | 2020-10-16 22:17:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 2,810 bytes |
コンパイル時間 | 2,319 ms |
コンパイル使用メモリ | 203,372 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 22:07:56 |
合計ジャッジ時間 | 7,537 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
6,812 KB |
testcase_01 | AC | 21 ms
6,940 KB |
testcase_02 | AC | 9 ms
6,944 KB |
testcase_03 | AC | 66 ms
6,944 KB |
testcase_04 | AC | 75 ms
6,944 KB |
testcase_05 | AC | 14 ms
6,940 KB |
testcase_06 | AC | 54 ms
6,940 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 6 ms
6,940 KB |
testcase_09 | AC | 28 ms
6,940 KB |
testcase_10 | AC | 65 ms
6,940 KB |
testcase_11 | AC | 73 ms
6,944 KB |
testcase_12 | AC | 54 ms
6,940 KB |
testcase_13 | AC | 18 ms
6,940 KB |
testcase_14 | AC | 7 ms
6,944 KB |
testcase_15 | AC | 63 ms
6,940 KB |
testcase_16 | AC | 14 ms
6,948 KB |
testcase_17 | AC | 71 ms
6,944 KB |
testcase_18 | AC | 28 ms
6,940 KB |
testcase_19 | AC | 25 ms
6,944 KB |
testcase_20 | AC | 54 ms
6,940 KB |
testcase_21 | AC | 68 ms
6,940 KB |
testcase_22 | AC | 48 ms
6,940 KB |
testcase_23 | AC | 37 ms
6,940 KB |
testcase_24 | AC | 15 ms
6,948 KB |
testcase_25 | AC | 35 ms
6,940 KB |
testcase_26 | AC | 30 ms
6,940 KB |
testcase_27 | AC | 66 ms
6,940 KB |
testcase_28 | AC | 19 ms
6,944 KB |
testcase_29 | AC | 19 ms
6,940 KB |
testcase_30 | AC | 81 ms
6,944 KB |
testcase_31 | AC | 22 ms
6,944 KB |
testcase_32 | AC | 10 ms
6,944 KB |
testcase_33 | AC | 55 ms
6,944 KB |
testcase_34 | AC | 68 ms
6,944 KB |
testcase_35 | AC | 24 ms
6,944 KB |
testcase_36 | AC | 67 ms
6,940 KB |
testcase_37 | AC | 27 ms
6,940 KB |
testcase_38 | AC | 63 ms
6,940 KB |
testcase_39 | AC | 19 ms
6,940 KB |
testcase_40 | AC | 78 ms
6,940 KB |
testcase_41 | AC | 78 ms
6,940 KB |
testcase_42 | AC | 77 ms
6,940 KB |
testcase_43 | AC | 77 ms
6,940 KB |
testcase_44 | AC | 77 ms
6,944 KB |
testcase_45 | AC | 77 ms
6,940 KB |
testcase_46 | AC | 77 ms
6,940 KB |
testcase_47 | AC | 78 ms
6,940 KB |
testcase_48 | AC | 78 ms
6,940 KB |
testcase_49 | AC | 77 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define ii pair <int, int> #define app push_back #define all(a) a.begin(), a.end() #define bp __builtin_popcountll #define ll long long #define mp make_pair #define f first #define s second #define Time (double)clock()/CLOCKS_PER_SEC #define debug(x) std::cout << #x << ": " << x << '\n'; const int MOD = 1e9+7, N = 2007; //need define int long long int mod(int n) { n %= MOD; if (n < 0) return n + MOD; else return n; } int fp(int a, int p) { int ans = 1, c = a; for (int i = 0; (1ll << i) <= p; ++i) { if ((p >> i) & 1) ans = mod(ans * c); c = mod(c * c); } return ans; } int dv(int a, int b) { return mod(a * fp(b, MOD - 2)); } struct M { ll x; M (int x_) { x = mod(x_); } M () { x = 0; } M operator + (M y) { int ans = x + y.x; if (ans >= MOD) ans -= MOD; return M(ans); } M operator - (M y) { int ans = x - y.x; if (ans < 0) ans += MOD; return M(ans); } M operator * (M y) { return M(x * y.x % MOD); } M operator / (M y) { return M(x * fp(y.x, MOD - 2) % MOD); } M operator + (int y) { return (*this) + M(y); } M operator - (int y) { return (*this) - M(y); } M operator * (int y) { return (*this) * M(y); } M operator / (int y) { return (*this) / M(y); } M operator ^ (int p) { return M(fp(x, p)); } void operator += (M y) { *this = *this + y; } void operator -= (M y) { *this = *this - y; } void operator *= (M y) { *this = *this * y; } void operator /= (M y) { *this = *this / y; } void operator += (int y) { *this = *this + y; } void operator -= (int y) { *this = *this - y; } void operator *= (int y) { *this = *this * y; } void operator /= (int y) { *this = *this / y; } void operator ^= (int p) { *this = *this ^ p; } }; M f[N], inv[N]; void prec() { f[0] = M(1); for (int i = 1; i < N; ++i) f[i] = f[i - 1] * M(i); inv[N - 1] = f[N - 1] ^ (MOD - 2); for (int i = N - 2; i >= 0; --i) inv[i] = inv[i + 1] * M(i + 1); } M C(int n, int k) { if (n < k) return M(0); else return f[n] * inv[k] * inv[n - k]; } signed main() { #ifdef HOME freopen("input.txt", "r", stdin); #else #define endl '\n' ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cout.setf(ios::fixed); cout.precision(20); #endif prec(); int t; cin >> t; while (t--) { int n, m, x; cin >> n >> m >> x; auto a = M(1 + m)^n; auto b = M(1 - m)^n; if (x == 0) { cout << ((a + b)/2).x << endl; } else { cout << ((a - b)/2).x << endl; } } }