이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
#define rep(a,b) for(int a = 0; a < (b); ++a)
#define all(t) t.begin(), t.end()
#define pb push_back
const int N = 1e5+5, INF = 2e9+54321, mod = 1e9+7;
const ll INF_L = (ll)2e18+54321;
int n, wyn;
int D[N], X[N], dp[N];
void solve()
{
cin >> n;
rep(i,n) cin >> D[i] >> X[i];
wyn = 0, dp[0] = 1;
rep(i,n)
{
wyn = (wyn+dp[i]) % mod;
for(int j = 1; j <= X[i] and (ll)i+(ll)j*D[i] < (ll)n; ++j)
{
dp[i+j*D[i]] = (dp[i+j*D[i]]+dp[i]) % mod;
}
}
cout << wyn << '\n';
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int T = 1;
//cin >> T;
while(T--) solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |