結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 18:31:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 777 ms / 5,000 ms
コード長 804 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 67,820 KB
実行使用メモリ 15,792 KB
最終ジャッジ日時 2024-04-30 18:31:44
合計ジャッジ時間 13,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,408 KB
testcase_01 AC 4 ms
9,280 KB
testcase_02 AC 5 ms
9,400 KB
testcase_03 AC 5 ms
9,472 KB
testcase_04 AC 5 ms
9,352 KB
testcase_05 AC 4 ms
9,620 KB
testcase_06 AC 5 ms
9,568 KB
testcase_07 AC 5 ms
9,460 KB
testcase_08 AC 5 ms
9,484 KB
testcase_09 AC 5 ms
9,460 KB
testcase_10 AC 5 ms
9,544 KB
testcase_11 AC 5 ms
9,512 KB
testcase_12 AC 5 ms
9,536 KB
testcase_13 AC 5 ms
9,344 KB
testcase_14 AC 4 ms
9,320 KB
testcase_15 AC 5 ms
9,624 KB
testcase_16 AC 5 ms
9,456 KB
testcase_17 AC 227 ms
9,592 KB
testcase_18 AC 231 ms
9,484 KB
testcase_19 AC 5 ms
9,480 KB
testcase_20 AC 5 ms
9,480 KB
testcase_21 AC 5 ms
9,368 KB
testcase_22 AC 726 ms
15,772 KB
testcase_23 AC 717 ms
15,688 KB
testcase_24 AC 717 ms
15,692 KB
testcase_25 AC 777 ms
15,780 KB
testcase_26 AC 700 ms
15,792 KB
testcase_27 AC 619 ms
13,728 KB
testcase_28 AC 740 ms
14,980 KB
testcase_29 AC 676 ms
14,932 KB
testcase_30 AC 540 ms
12,600 KB
testcase_31 AC 688 ms
15,436 KB
testcase_32 AC 657 ms
14,492 KB
testcase_33 AC 342 ms
11,576 KB
testcase_34 AC 491 ms
12,880 KB
testcase_35 AC 210 ms
10,248 KB
testcase_36 AC 196 ms
10,304 KB
testcase_37 AC 422 ms
12,676 KB
testcase_38 AC 367 ms
11,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2734.cc:  No.2734 Addition and Multiplication in yukicoder (Hard) - yukicoder
 */

#include<cstdio>
#include<string>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_L = 20;
const int MOD = 998244353;

/* typedef */

typedef long long ll;

/* global variables */

string as[MAX_N];

/* subroutines */

bool cmpstr(const string &a, const string &b) {
  return (a + b) < (b + a);
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) {
    char s[MAX_L + 4];
    scanf("%s", s);
    as[i] = string(s);
  }

  sort(as, as + n, cmpstr);

  int sum = 0;
  for (int i = 0; i < n; i++)
    for (auto c: as[i])
      sum = ((ll)sum * 10 + (c - '0')) % MOD;

  printf("%d\n", sum);
  
  return 0;
}
0