結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー karinohitokarinohito
提出日時 2024-09-17 00:34:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 778 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 3,910 ms
コンパイル使用メモリ 212,956 KB
実行使用メモリ 22,824 KB
最終ジャッジ日時 2024-09-17 00:34:36
合計ジャッジ時間 15,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 222 ms
11,464 KB
testcase_18 AC 253 ms
11,572 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 724 ms
22,824 KB
testcase_23 AC 732 ms
22,692 KB
testcase_24 AC 731 ms
22,720 KB
testcase_25 AC 778 ms
22,692 KB
testcase_26 AC 707 ms
22,692 KB
testcase_27 AC 622 ms
19,836 KB
testcase_28 AC 710 ms
21,728 KB
testcase_29 AC 717 ms
21,672 KB
testcase_30 AC 525 ms
18,340 KB
testcase_31 AC 736 ms
22,328 KB
testcase_32 AC 627 ms
20,476 KB
testcase_33 AC 362 ms
12,976 KB
testcase_34 AC 485 ms
17,760 KB
testcase_35 AC 191 ms
8,832 KB
testcase_36 AC 192 ms
9,020 KB
testcase_37 AC 446 ms
16,516 KB
testcase_38 AC 369 ms
13,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint=modint998244353;


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N;
    cin>>N;
    vector<string> S(N);
    for(int i=0;i<N;i++)cin>>S[i];
    sort(S.begin(),S.end(),[](auto const&L,auto const& R){
        if(L+R<R+L)return true;
        else return false;
    });
    string T="";
    for(int i=0;i<N;i++)T+=S[i];
    ll an=0;
    for(auto t:T)an=(10*an+t-'0')%998244353;
    cout<<an<<"\n";
    
}
0