結果
問題 | No.129 お年玉(2) |
ユーザー | raven7959 |
提出日時 | 2022-12-13 16:24:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,800 bytes |
コンパイル時間 | 2,447 ms |
コンパイル使用メモリ | 209,676 KB |
実行使用メモリ | 785,024 KB |
最終ジャッジ日時 | 2024-11-07 11:20:43 |
合計ジャッジ時間 | 18,212 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
41,856 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 269 ms
321,536 KB |
testcase_06 | AC | 416 ms
509,952 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 345 ms
425,728 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | AC | 330 ms
408,064 KB |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | AC | 364 ms
443,520 KB |
testcase_16 | AC | 406 ms
504,832 KB |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | AC | 354 ms
430,336 KB |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | AC | 335 ms
410,624 KB |
testcase_26 | AC | 342 ms
420,864 KB |
testcase_27 | AC | 329 ms
407,936 KB |
testcase_28 | MLE | - |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 3 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 6 ms
7,936 KB |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 5 ms
7,040 KB |
testcase_36 | AC | 6 ms
7,936 KB |
testcase_37 | AC | 7 ms
9,344 KB |
testcase_38 | AC | 71 ms
86,528 KB |
testcase_39 | AC | 124 ms
132,480 KB |
testcase_40 | AC | 298 ms
380,928 KB |
testcase_41 | AC | 183 ms
230,784 KB |
testcase_42 | AC | 80 ms
98,304 KB |
testcase_43 | AC | 79 ms
96,512 KB |
testcase_44 | MLE | - |
testcase_45 | AC | 45 ms
54,016 KB |
testcase_46 | AC | 120 ms
148,352 KB |
testcase_47 | MLE | - |
testcase_48 | AC | 355 ms
449,664 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,fma,abm,mmx,avx,avx2") #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; i--) #define all(x) (x).begin(), (x).end() #define sz(x) int(x.size()) #define yn(joken) cout<<((joken) ? "Yes" : "No")<<"\n" #define YN(joken) cout<<((joken) ? "YES" : "NO")<<"\n" using namespace std; using ll = long long; using vi = vector<int>; using vl = vector<ll>; using vs = vector<string>; using vc = vector<char>; using vd = vector<double>; using vld = vector<long double>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; using vvs = vector<vector<string>>; using vvc = vector<vector<char>>; using vvd = vector<vector<double>>; using vvld = vector<vector<long double>>; using vvvi = vector<vector<vector<int>>>; using vvvl = vector<vector<vector<ll>>>; using vvvvi = vector<vector<vector<vector<int>>>>; using vvvvl = vector<vector<vector<vector<ll>>>>; using pii = pair<int,int>; using pll = pair<ll,ll>; const int INF = 1e9; const ll LINF = 2e18; template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } bool ispow2(int i) { return i && (i & -i) == i; } bool ispow2(ll i) { return i && (i & -i) == i; } template <class T> vector<T> make_vec(size_t a) { return vector<T>(a); } template <class T, class... Ts> auto make_vec(size_t a, Ts... ts) { return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...)); } template <typename T> istream& operator>>(istream& is, vector<T>& v) { for (int i = 0; i < int(v.size()); i++) { is >> v[i]; } return is; } template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { for (int i = 0; i < int(v.size()); i++) { os << v[i]; if (i < int(v.size()) - 1) os << ' '; } return os; } static uint32_t RandXor(){ static uint32_t x=123456789; static uint32_t y=362436069; static uint32_t z=521288629; static uint32_t w=88675123; uint32_t t; t=x^(x<<11); x=y; y=z; z=w; return w=(w^(w>>19))^(t^(t>>8)); } static double Rand01(){ return (RandXor()+0.5)*(1.0/UINT_MAX); } void solve(){ ll N,M; cin>>N>>M; N/=1000; N%=M; vvl P(M+1,vl(M+1)); P[0][0]=1; for(int i=1;i<=M;i++){ for(int j=0;j<=i;j++){ P[i][j]+=P[i-1][j]; if(j) P[i][j]+=P[i-1][j-1]; if(P[i][j]>INF) P[i][j]-=INF; } } cout<<P[M][N]<<"\n"; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); solve(); }