結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー karinohitokarinohito
提出日時 2024-09-17 00:32:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 483 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 212,748 KB
実行使用メモリ 24,332 KB
最終ジャッジ日時 2024-09-17 00:32:59
合計ジャッジ時間 14,989 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 219 ms
11,504 KB
testcase_18 AC 221 ms
11,568 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 RE -
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 725 ms
22,692 KB
testcase_23 AC 731 ms
22,824 KB
testcase_24 AC 720 ms
22,692 KB
testcase_25 AC 762 ms
23,064 KB
testcase_26 AC 711 ms
24,332 KB
testcase_27 RE -
testcase_28 AC 749 ms
22,148 KB
testcase_29 AC 684 ms
22,808 KB
testcase_30 RE -
testcase_31 AC 698 ms
22,972 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 477 ms
16,640 KB
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

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<<endl;
    
}
0