Submission #54371709
Source Code Expand
Copy
#include<iostream>#include<string>#include<vector>#include<cmath>#include<algorithm>#include<map>#include<iomanip>#include<set>#include<numeric>#include<bitset>#include<queue>#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)#define all(v) v.begin(), v.end()#define dump(x) cout << #x << " = " << (x) << endl#define YES(n) cout << ((n) ? "YES" : "NO" ) << endl#define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl#define FOR(i,a,b) for(int i=(a);i<(b);++i)#define FORE(x,a) for(auto& (x) : (a) )#define ENDL cout<<endl#define VECCIN(x) for(auto&youso_: (x) )cin>>youso_
#include<iostream> #include<string> #include<vector> #include<cmath> #include<algorithm> #include<map> #include<iomanip> #include<set> #include<numeric> #include<bitset> #include<queue> #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) #define all(v) v.begin(), v.end() #define dump(x) cout << #x << " = " << (x) << endl #define YES(n) cout << ((n) ? "YES" : "NO" ) << endl #define Yes(n) cout << ((n) ? "Yes" : "No" ) << endl #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define FORE(x,a) for(auto& (x) : (a) ) #define ENDL cout<<endl #define VECCIN(x) for(auto&youso_: (x) )cin>>youso_ #define VECCOUT(x) for(auto&youso_: (x) )cout<<youso_<<" ";cout<<endl #define pb(a) push_back(a) #define mp make_pair #define mt make_tuple #define mll map<long long,long long> #define msl map<string,long long> #define pll pair<long long, long long> #define qll queue<long long> #define pqll priority_queue<long long> #define vi vector<int> #define vs vector<string> #define vll vector<long long> #define vvll vector<vector<long long>> using ll = long long; using ull = unsigned long long; using namespace std; const ll MOD = 998244353; const ll INF = 1e17; ll modpow(ll a, ll b) { ll result = 1; while (b > 0) { if (b % 2 == 1) { result = result * a % MOD; } a = a * a % MOD; b /= 2; } return result; } ll modinv(ll a) { ll b = MOD, u = 1, v = 0; while (b) { ll t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= MOD; if (u < 0) u += MOD; return u; } int main() { ll n; cin >> n; ll len = to_string(n).size(); ll n_mod = n % MOD; ll power_term = modpow(modpow(10, len), n) - 1; if (power_term < 0) power_term += MOD; ll inv_term = modinv(modpow(10, len) - 1); if (inv_term < 0) inv_term += MOD; ll result = n_mod * power_term % MOD * inv_term % MOD; cout << result << endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | D - 88888888 |
User | Patos1234 |
Language | C++ 20 (gcc 12.2) |
Score | 350 |
Code Size | 2050 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3640 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 350 / 350 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | example_00.txt, example_01.txt, example_02.txt |
All | example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, hand_07.txt, hand_08.txt, hand_09.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
example_00.txt | AC | 1 ms | 3472 KB |
example_01.txt | AC | 1 ms | 3636 KB |
example_02.txt | AC | 1 ms | 3452 KB |
hand_00.txt | AC | 1 ms | 3640 KB |
hand_01.txt | AC | 1 ms | 3604 KB |
hand_02.txt | AC | 1 ms | 3424 KB |
hand_03.txt | AC | 1 ms | 3492 KB |
hand_04.txt | AC | 1 ms | 3484 KB |
hand_05.txt | AC | 1 ms | 3496 KB |
hand_06.txt | AC | 1 ms | 3448 KB |
hand_07.txt | AC | 1 ms | 3488 KB |
hand_08.txt | AC | 1 ms | 3540 KB |
hand_09.txt | AC | 1 ms | 3428 KB |
random_00.txt | AC | 1 ms | 3496 KB |
random_01.txt | AC | 1 ms | 3432 KB |
random_02.txt | AC | 1 ms | 3512 KB |
random_03.txt | AC | 1 ms | 3480 KB |
random_04.txt | AC | 1 ms | 3560 KB |
random_05.txt | AC | 1 ms | 3556 KB |
random_06.txt | AC | 1 ms | 3496 KB |
random_07.txt | AC | 1 ms | 3540 KB |
random_08.txt | AC | 1 ms | 3492 KB |
random_09.txt | AC | 1 ms | 3556 KB |
random_10.txt | AC | 1 ms | 3468 KB |
random_11.txt | AC | 1 ms | 3540 KB |
random_12.txt | AC | 1 ms | 3548 KB |
random_13.txt | AC | 1 ms | 3456 KB |
random_14.txt | AC | 1 ms | 3424 KB |