結果

問題 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,639 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 203,840 KB
実行使用メモリ 8,996 KB
最終ジャッジ日時 2024-04-19 21:52:10
合計ジャッジ時間 26,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 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 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 528 ms
6,860 KB
testcase_18 AC 591 ms
6,860 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 1,556 ms
8,876 KB
testcase_23 AC 1,560 ms
8,872 KB
testcase_24 AC 1,590 ms
8,744 KB
testcase_25 AC 1,629 ms
8,876 KB
testcase_26 AC 1,559 ms
8,996 KB
testcase_27 AC 1,351 ms
8,876 KB
testcase_28 AC 1,639 ms
8,868 KB
testcase_29 AC 1,587 ms
8,740 KB
testcase_30 AC 1,183 ms
8,872 KB
testcase_31 AC 1,583 ms
8,872 KB
testcase_32 AC 1,394 ms
8,784 KB
testcase_33 AC 759 ms
6,456 KB
testcase_34 AC 1,094 ms
8,656 KB
testcase_35 AC 430 ms
5,376 KB
testcase_36 AC 426 ms
5,376 KB
testcase_37 AC 928 ms
8,492 KB
testcase_38 AC 831 ms
6,596 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