結果

問題 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  
実行時間 1,013 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 4,908 ms
コンパイル使用メモリ 271,312 KB
実行使用メモリ 23,952 KB
最終ジャッジ日時 2024-11-24 21:15:45
合計ジャッジ時間 19,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 296 ms
11,568 KB
testcase_18 AC 298 ms
11,576 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 978 ms
22,820 KB
testcase_23 AC 953 ms
23,952 KB
testcase_24 AC 982 ms
23,912 KB
testcase_25 AC 1,013 ms
23,576 KB
testcase_26 AC 952 ms
22,948 KB
testcase_27 AC 784 ms
20,176 KB
testcase_28 AC 957 ms
22,448 KB
testcase_29 AC 907 ms
22,708 KB
testcase_30 AC 681 ms
18,964 KB
testcase_31 AC 934 ms
22,328 KB
testcase_32 AC 869 ms
20,728 KB
testcase_33 AC 435 ms
13,096 KB
testcase_34 AC 636 ms
18,752 KB
testcase_35 AC 256 ms
8,960 KB
testcase_36 AC 248 ms
9,148 KB
testcase_37 AC 543 ms
16,644 KB
testcase_38 AC 480 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