結果
| 問題 |
No.2729 Addition and Multiplication in yukicoder (Easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-19 21:26:22 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 750 bytes |
| コンパイル時間 | 2,076 ms |
| コンパイル使用メモリ | 199,308 KB |
| 最終ジャッジ日時 | 2025-02-21 03:39:57 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 WA * 13 |
ソースコード
#ifdef LOCAL
#include <local.hpp>
#else
#include <bits/stdc++.h>
#define debug(...) ((void)0)
#define postprocess(...) ((void)0)
#endif
#include <atcoder/modint.hpp>
using mint = atcoder::modint998244353;
using namespace std;
using ll = long long;
using ld = long double;
void solve([[maybe_unused]] int test) {
int N;
cin >> N;
mint ans = 0;
vector<int> A(N, 0);
for (auto&& x : A) {
cin >> x;
}
sort(A.begin(), A.end());
for (auto&& x : A) {
ans *= 10;
ans += x;
}
cout << ans.val() << endl;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
// cin >> t;
for (int i = 1; i <= t; i++) {
solve(i);
}
postprocess();
}