結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー butsurizukibutsurizuki
提出日時 2024-04-19 21:38:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,040 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 252,892 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 14:24:07
合計ジャッジ時間 19,196 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 322 ms
5,248 KB
testcase_18 AC 339 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 995 ms
5,248 KB
testcase_23 AC 976 ms
5,248 KB
testcase_24 AC 1,011 ms
5,248 KB
testcase_25 AC 1,040 ms
5,248 KB
testcase_26 AC 985 ms
5,248 KB
testcase_27 AC 814 ms
5,248 KB
testcase_28 AC 981 ms
5,248 KB
testcase_29 AC 940 ms
5,248 KB
testcase_30 AC 708 ms
5,248 KB
testcase_31 AC 962 ms
5,248 KB
testcase_32 AC 881 ms
5,248 KB
testcase_33 AC 472 ms
5,248 KB
testcase_34 AC 666 ms
5,248 KB
testcase_35 AC 265 ms
5,248 KB
testcase_36 AC 262 ms
5,248 KB
testcase_37 AC 573 ms
5,248 KB
testcase_38 AC 504 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define mod 998244353

using namespace std;

bool comp(const long long a,const long long b){
  string sa=to_string(a);
  string sb=to_string(b);
  string ab=sa+sb;
  string ba=sb+sa;
  return (ab<ba);
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  vector<long long> p10(20);
  p10[0]=1;
  for(int i=1;i<20;i++){
    p10[i]=(p10[i-1]*10)%mod;
  }

  int n;
  cin >> n;
  vector<long long> a(n);
  for(auto &nx : a){cin >> nx;}
  sort(a.begin(),a.end(),comp);
  long long x=0;
  for(auto &nx : a){
    x*=p10[to_string(nx).size()]; x%=mod;
    x+=nx; x%=mod;
  }
  cout << x << "\n";
  return 0;
}
0