結果
問題 | No.2017 Mod7 Parade |
ユーザー | みここ |
提出日時 | 2022-12-23 20:36:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 3,006 bytes |
コンパイル時間 | 577 ms |
コンパイル使用メモリ | 70,568 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 04:13:02 |
合計ジャッジ時間 | 2,621 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 41 ms
6,816 KB |
testcase_04 | AC | 28 ms
6,816 KB |
testcase_05 | AC | 21 ms
6,820 KB |
testcase_06 | AC | 45 ms
6,816 KB |
testcase_07 | AC | 7 ms
6,816 KB |
testcase_08 | AC | 26 ms
6,820 KB |
testcase_09 | AC | 11 ms
6,820 KB |
testcase_10 | AC | 27 ms
6,820 KB |
testcase_11 | AC | 36 ms
6,816 KB |
testcase_12 | AC | 32 ms
6,816 KB |
testcase_13 | AC | 52 ms
6,816 KB |
testcase_14 | AC | 52 ms
6,820 KB |
testcase_15 | AC | 52 ms
6,816 KB |
testcase_16 | AC | 51 ms
6,816 KB |
testcase_17 | AC | 53 ms
6,816 KB |
testcase_18 | AC | 55 ms
6,820 KB |
testcase_19 | AC | 30 ms
6,820 KB |
testcase_20 | AC | 1 ms
6,816 KB |
ソースコード
#include <iostream> using namespace std; const int MOD = 1000000007; struct mint { int val; mint() : val(0) {} mint(long long v) { if (abs(v) >= MOD) { v %= MOD; } if (v < 0) { v += MOD; } val = v; } mint &operator++() { val++; if (val == MOD) { val = 0; } return *this; } mint &operator--() { if (val == 0) { val = MOD; } val--; return *this; } mint &operator+=(const mint &x) { val += x.val; if (val >= MOD) { val -= MOD; } return *this; } mint &operator-=(const mint &x) { val -= x.val; if (val < 0) { val += MOD; } return *this; } mint &operator*=(const mint &x) { val = (int)((long long)val * x.val % MOD); return *this; } mint &operator/=(const mint &x) { *this *= x.inv(); return *this; } mint operator-() { return mint() - *this; } mint pow(long long n) const { mint x = 1, r = *this; while (n) { if (n & 1) { x *= r; } r *= r; n >>= 1; } return x; } mint inv() const { return pow(MOD - 2); } friend mint operator+(const mint &x, const mint &y) { return mint(x) += y; } friend mint operator-(const mint &x, const mint &y) { return mint(x) -= y; } friend mint operator*(const mint &x, const mint &y) { return mint(x) *= y; } friend mint operator/(const mint &x, const mint &y) { return mint(x) /= y; } friend bool operator==(const mint &x, const mint &y) { return x.val == y.val; } friend bool operator!=(const mint &x, const mint &y) { return x.val != y.val; } friend std::ostream &operator<<(std::ostream &os, const mint &x) { return os << x.val; } friend std::istream &operator>>(std::istream &is, mint &x) { long long v; is >> v; x = mint(v); return is; } }; int main() { int k; cin >> k; int d[200005], l[200005]; for (int i = 0; i < k; i++) { cin >> d[i] >> l[i]; } int p[6]; p[0] = 1; for (int i = 1; i < 6; i++) { p[i] = p[i - 1] * 10 % 7; } mint e[7] = {1}; for (int i = 0; i < k; i++) { int x = (p[l[i] % 6] + 6) * 4 * d[i] % 7; mint f[7]{0}; for (int j = 0; j < 7; j++) { f[j] += e[j]; f[(j * p[l[i] % 6] + x) % 7] += e[j]; } swap(e, f); } mint ans = 0; for (int j = 0; j < 7; j++) { ans += e[j] * j; } cout << ans << endl; }