結果
問題 | No.2729 Addition and Multiplication in yukicoder (Easy) |
ユーザー | kekenx |
提出日時 | 2024-05-26 16:45:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 1,952 bytes |
コンパイル時間 | 896 ms |
コンパイル使用メモリ | 80,572 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-26 16:45:26 |
合計ジャッジ時間 | 5,314 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 147 ms
6,940 KB |
testcase_03 | AC | 80 ms
6,940 KB |
testcase_04 | AC | 86 ms
6,944 KB |
testcase_05 | AC | 90 ms
6,944 KB |
testcase_06 | AC | 152 ms
6,944 KB |
testcase_07 | AC | 109 ms
6,944 KB |
testcase_08 | AC | 146 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 154 ms
6,940 KB |
testcase_13 | AC | 152 ms
6,940 KB |
testcase_14 | AC | 152 ms
6,940 KB |
testcase_15 | AC | 163 ms
6,940 KB |
testcase_16 | AC | 104 ms
6,944 KB |
testcase_17 | AC | 106 ms
6,940 KB |
testcase_18 | AC | 129 ms
6,944 KB |
testcase_19 | AC | 103 ms
6,940 KB |
ソースコード
#include <iostream> #include <cassert> #include <vector> #include <algorithm> #include <utility> namespace kekenx { template<typename T, T mod> class ModInt { public: ModInt(T y): x(y >= 0? y % mod: (mod - (-y) % mod) % mod) {} T get() { return x; } ModInt &operator+=(const ModInt &p) { if ((x += p.x) >= mod) x -= mod; return *this; } ModInt &operator-=(const ModInt &p) { if ((x += mod - p.x) >= mod) x -= mod; return *this; } ModInt &operator*=(const ModInt &p) { x = x * p.x % mod; return *this; } ModInt &operator/=(const ModInt &p) { *this *= p.inverse(); return *this; } ModInt operator-() const { return ModInt(-x); } ModInt operator+(const ModInt &p) const {return ModInt(*this) += p; } ModInt operator-(const ModInt &p) const {return ModInt(*this) -= p; } ModInt operator*(const ModInt &p) const {return ModInt(*this) *= p; } ModInt operator/(const ModInt &p) const {return ModInt(*this) /= p; } bool operator==(const ModInt &p) const { return x == p.x; } bool operator!=(const ModInt &p) const { return x != p.x; } ModInt pow(int e) const { T a = 1, p = x; while(e > 0) { if (e % 2 == 0) { p = (p * p) % mod; e /= 2; } else { a = (a * p) % mod; e--; } } return ModInt(a); } private: T x; ModInt inverse() const { T a = x, b = mod, u = 1, v = 0, t; while (b > 0) { t = a / b; a -= t * b; std::swap(a, b); u -= t * v; std::swap(u, v); } return ModInt(u); } }; } // kekenx using namespace std; using mint = kekenx::ModInt<long long, 998244353>; int main() { int N; cin >> N; vector<long long> A(N); for (long long &a: A) cin >> a; sort(A.begin(), A.end()); mint x = 0; for (int i = 0; i < N; i++) { x = mint(10) * x + mint(A[i]); } cout << x.get() << endl; return 0; }