結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー ttkkggwwttkkggww
提出日時 2024-05-03 17:58:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 940 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 4,629 ms
コンパイル使用メモリ 270,220 KB
実行使用メモリ 22,820 KB
最終ジャッジ日時 2024-05-03 17:58:23
合計ジャッジ時間 18,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 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 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 297 ms
11,568 KB
testcase_18 AC 285 ms
11,568 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 925 ms
22,820 KB
testcase_23 AC 920 ms
22,816 KB
testcase_24 AC 940 ms
22,816 KB
testcase_25 AC 938 ms
22,820 KB
testcase_26 AC 936 ms
22,692 KB
testcase_27 AC 787 ms
20,088 KB
testcase_28 AC 936 ms
21,852 KB
testcase_29 AC 872 ms
21,804 KB
testcase_30 AC 659 ms
18,264 KB
testcase_31 AC 852 ms
22,332 KB
testcase_32 AC 806 ms
20,600 KB
testcase_33 AC 411 ms
13,108 KB
testcase_34 AC 609 ms
17,760 KB
testcase_35 AC 238 ms
8,832 KB
testcase_36 AC 238 ms
9,272 KB
testcase_37 AC 532 ms
16,516 KB
testcase_38 AC 457 ms
13,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll n;
vector<string> a;

void solve(){
	sort(a.begin(),a.end(),[](string x,string y){
		return x+y < y+x;
	});
	string ans;
	for(int i = 0;i<n;i++) ans += a[i];
	mll res = 0;
	for(int i = 0;i<ans.size();i++){
		res  = res * 10 + (ans[i]-'0');
	}
	cout<<res.val()<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n;
	a = vector<string>(n);
	for(ll i = 0; i < n; ++i) cin >> a[i];
	solve();
}
0