結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | mlasdf2 |
提出日時 | 2021-07-31 03:53:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,138 bytes |
コンパイル時間 | 3,747 ms |
コンパイル使用メモリ | 230,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 07:43:03 |
合計ジャッジ時間 | 4,558 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; typedef long long ll; const long long INF = 1LL<<60; const double PI = acos(-1.0); /*const double PI = atan2(0.0,-1.0)*/ template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define rep1(i,aa,n) for(ll i = aa; i <= (ll)(n); i++) #define ALL(a) (a).begin(),(a).end() #define v2d(val1,val2,ini) vector<vector<ll>>(val1,vector<ll>(val2,ini)); #define v3d(val1,val2,val3,ini) vector<vector<vector<ll>>>(val1,vector<vector<ll>>(val2,vector<ll>(val3,ini))); #define v4d(val1,val2,val3,val4,ini) vector<vector<vector<vector<ll>>>>(val1,vector<vector<vector<ll>>>(val2,vector<<vector<ll>>(val3,vector<ll>(val4,ini)))); #define pqe priority_queue<ll> #define pqeg priority_queue<ll,vector<ll>,greater<ll>> #define lcin(...) ll __VA_ARGS__;CINT(__VA_ARGS__) #define eout(...) COU(__VA_ARGS__); #define sout(...) SCOU(__VA_ARGS__); #define scin(...) string __VA_ARGS__;CINT(__VA_ARGS__) #define lb(aa,val) lower_bound(ALL(aa),val) #define pb push_back #define bpc __builtin_popcountll ll kaijou(ll e){ll r=1;rep(i,e){r*=(i+1);}return r;} bool kukan(ll t,ll a,ll b){ if(a<=t&&t<=b){ return true; }else return false; } void CINT(){} template <class Head,class... Tail> void CINT(Head&& head,Tail&&... tail){ cin>>head; CINT(move(tail)...); } void COU(){} template <class Head,class... Tail> void COU(Head&& head,Tail&&... tail){ cout<<head<<endl; COU(move(tail)...); } void SCOU(){} template <class Head,class... Tail> void SCOU(Head&& head,Tail&&... tail){ cout<<head<<" "; SCOU(move(tail)...); } template <class T = ll> T IN(){T x;cin>>x;return (x);} using pii = pair<ll,ll>; using v2 = vector<vector<ll>>; using v1 = vector<ll>; using v2p = vector<vector<pii>>; using v1p = vector<pii>; const ll mo=1000000007; //const ll mo=998244353; ll mod_pow(ll N,ll n){ if(n==0) return 1; ll hh; hh=n%2; int tt=mod_pow(N,n/2); if(hh==0)return tt%mo*tt%mo; else {return tt%mo*tt%mo*N%mo;} } long long extGCD(long long a, long long b, long long &x, long long &y) { if (b == 0) { x = 1; y = 0; return a; } long long d = extGCD(b, a%b, y, x); // 再帰的に解く y-=a/b*x; return d; } // 逆元計算 (ここでは a と m が互いに素であることが必要) long long modinv(long long a, long long m) { long long x, y; extGCD(a, m, x, y); return (x+m)%m; // 気持ち的には x % m だが、x が負かもしれないので } int main(){ //cout<<fixed<<setprecision(15); lcin(n); v1 aa(10); rep(i,9){ lcin(t); aa[i]=t; } v1 kai(n+10,0); v1 juu(9,0); kai[0]=1; rep1(i,1,n+9){ kai[i]=i*kai[i-1]; kai[i]%=mo; } rep(i,9){ juu[i]=i+1; rep(k,n-1){ juu[i]=juu[i]*10+i+1; juu[i]%=mo; } } ll e=kai[n]; rep(i,9){ if(aa[i]==0)continue; e*=modinv(aa[i],mo); e%=mo; } ll ans=0; rep(i,9){ if(aa[i]==0)continue; ans+=e*juu[i]%mo*aa[i]%mo*modinv(n,mo)%mo; ans%=mo; } eout(ans); }