結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー otoshigootoshigo
提出日時 2024-04-19 23:28:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,321 bytes
コンパイル時間 3,008 ms
コンパイル使用メモリ 214,892 KB
実行使用メモリ 59,948 KB
最終ジャッジ日時 2024-04-19 23:28:38
合計ジャッジ時間 8,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define rep(i,n) for(int i=0;i<n;i++)
#define rrep(i,n) for(int i=(n)-1;i>=0;i--)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

const int MOD=998244353;

int main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    srand(time(NULL));
    int N;
    cin>>N;
    vector<string>S(N);
    for(int i=0;i<N;i++){
        cin>>S[i];
    }
    sort(all(S));
    set<int>se;
    for(int i=0;i<N;i++)se.insert(i);
    se.insert(1<<30);
    vector<bool>flag(N);
    string ans="";
    for(int i=0;i<N;i++){
        if(flag[i])continue;
        int at=*se.lower_bound(i+1);
        while(at<N&&S[at]+S[i]<=S[i]+S[at]){
            flag[at]=true;
            ans+=S[at];
            se.erase(at);
            at=*se.lower_bound(at+1);
        }
        flag[i]=true;
        ans+=S[i];
        se.erase(i);
    }
    int L=ans.size();
    vector<ll>ten(L);
    ten[0]=1;
    for(int i=1;i<L;i++)ten[i]=10*ten[i-1]%MOD;
    ll val=0;
    for(int i=0;i<L;i++){
        val+=(ans[i]-'0')*ten[L-1-i]%MOD;
        val%=MOD;
    }
    cout<<val<<"\n";
}
0