結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー ytqm3ytqm3
提出日時 2024-04-19 21:51:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,583 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 209,312 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2024-10-11 14:49:31
合計ジャッジ時間 24,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 523 ms
6,864 KB
testcase_18 AC 568 ms
6,860 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,519 ms
8,876 KB
testcase_23 AC 1,498 ms
8,748 KB
testcase_24 AC 1,541 ms
10,044 KB
testcase_25 AC 1,583 ms
8,696 KB
testcase_26 AC 1,507 ms
8,748 KB
testcase_27 AC 1,240 ms
8,720 KB
testcase_28 AC 1,500 ms
8,752 KB
testcase_29 AC 1,439 ms
9,204 KB
testcase_30 AC 1,079 ms
8,880 KB
testcase_31 AC 1,475 ms
8,748 KB
testcase_32 AC 1,337 ms
8,660 KB
testcase_33 AC 710 ms
6,588 KB
testcase_34 AC 1,021 ms
8,528 KB
testcase_35 AC 409 ms
5,248 KB
testcase_36 AC 408 ms
5,248 KB
testcase_37 AC 879 ms
9,196 KB
testcase_38 AC 769 ms
6,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main(){
  ll n;
  cin>>n;
  vector<ll> a(n);
  for(int i=0;i<n;++i){
    cin>>a[i];
  }
  sort(a.begin(),a.end(),[](ll x,ll y){ return to_string(x)+to_string(y)<to_string(y)+to_string(x); });
  string s;
  for(int i=0;i<n;++i){
    s+=to_string(a[i]);
  }
  reverse(s.begin(),s.end());
  constexpr ll mod=998244353;
  ll ans=0,now=1;
  for(int i=0;i<s.size();++i){
    ans=(ans+now*(s[i]-'0'))%mod;
    now=now*10%mod;
  }
  cout<<ans<<endl;
}
0