結果
問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
ユーザー | t98slider |
提出日時 | 2024-05-05 10:37:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 911 ms / 5,000 ms |
コード長 | 2,758 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 212,732 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-05-05 10:38:02 |
合計ジャッジ時間 | 16,006 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 272 ms
9,464 KB |
testcase_18 | AC | 277 ms
9,344 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 911 ms
18,816 KB |
testcase_23 | AC | 863 ms
18,704 KB |
testcase_24 | AC | 867 ms
18,816 KB |
testcase_25 | AC | 908 ms
18,772 KB |
testcase_26 | AC | 881 ms
18,816 KB |
testcase_27 | AC | 701 ms
16,124 KB |
testcase_28 | AC | 889 ms
17,896 KB |
testcase_29 | AC | 825 ms
17,664 KB |
testcase_30 | AC | 619 ms
14,352 KB |
testcase_31 | AC | 854 ms
18,304 KB |
testcase_32 | AC | 757 ms
16,640 KB |
testcase_33 | AC | 433 ms
10,988 KB |
testcase_34 | AC | 571 ms
13,824 KB |
testcase_35 | AC | 233 ms
7,936 KB |
testcase_36 | AC | 254 ms
8,064 KB |
testcase_37 | AC | 489 ms
12,536 KB |
testcase_38 | AC | 451 ms
11,496 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template<const unsigned int MOD> struct prime_modint { using mint = prime_modint; unsigned int v; prime_modint() : v(0) {} prime_modint(unsigned int a) { a %= MOD; v = a; } prime_modint(unsigned long long a) { a %= MOD; v = a; } prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; } prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; } static constexpr int mod() { return MOD; } mint& operator++() {v++; if(v == MOD)v = 0; return *this;} mint& operator--() {if(v == 0)v = MOD; v--; return *this;} mint operator++(int) { mint result = *this; ++*this; return result; } mint operator--(int) { mint result = *this; --*this; return result; } mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; } mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; } mint& operator*=(const mint& rhs) { v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD); return *this; } mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); } mint operator+() const { return *this; } mint operator-() const { return mint() - *this; } mint pow(long long n) const { assert(0 <= n); mint r = 1, x = *this; while (n) { if (n & 1) r *= x; x *= x; n >>= 1; } return r; } mint inv() const { assert(v); return pow(MOD - 2); } friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; } friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; } friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; } friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; } friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); } friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); } friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; } }; //using mint = prime_modint<1000000007>; using mint = prime_modint<998244353>; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<string> a(n); for(auto &&s : a) cin >> s; sort(a.begin(), a.end(), [&](string lhs, string rhs){ return lhs + rhs < rhs + lhs; }); vector<mint> pow10(19); pow10[0] = 1; for(int i = 0; i < 18; i++) pow10[i + 1] = pow10[i] * 10; mint ans; for(auto &&s : a){ ans *= pow10[s.size()]; ans += stoll(s); } cout << ans << '\n'; }