結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-19 22:27:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,059 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 215,460 KB
実行使用メモリ 22,952 KB
最終ジャッジ日時 2024-10-11 15:58:39
合計ジャッジ時間 18,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 300 ms
11,572 KB
testcase_18 AC 304 ms
11,576 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1,000 ms
22,952 KB
testcase_23 AC 993 ms
22,820 KB
testcase_24 AC 1,010 ms
22,696 KB
testcase_25 AC 1,059 ms
22,820 KB
testcase_26 AC 986 ms
22,692 KB
testcase_27 AC 821 ms
19,964 KB
testcase_28 AC 998 ms
21,852 KB
testcase_29 AC 955 ms
21,672 KB
testcase_30 AC 732 ms
18,132 KB
testcase_31 AC 972 ms
22,332 KB
testcase_32 AC 875 ms
20,604 KB
testcase_33 AC 472 ms
12,980 KB
testcase_34 AC 680 ms
17,764 KB
testcase_35 AC 266 ms
8,824 KB
testcase_36 AC 266 ms
9,020 KB
testcase_37 AC 575 ms
16,516 KB
testcase_38 AC 513 ms
13,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}
int main() {
    fast_io();
    int n;
    cin >> n;
    vector<string> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a.begin(), a.end(), [](string s, string t) {
        return s + t < t + s;
    });
    string s = "";
    for (string t : a) {
        s += t;
    }
    mint ans = 0;
    for (char c : s) {
        ans = 10 * ans + (c - '0');
    }
    cout << ans.val() << endl;
}
0