# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
3431 | arine | Inherited disease (kriii1_I) | C++98 | 0 ms | 1672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#define DIVIDENT 1000000007
using namespace std;
typedef long long int lld;
lld starting[110];
int main() {
starting[0]=0, starting[1]=1, starting[2]=2;
lld org=2;
for(int i=3; i<=100; ++i) {
starting[i]=(starting[i-1]+org)%DIVIDENT;
org=(org*i)%DIVIDENT;
}
// for(int i=0; i<=100; ++i) cerr << starting[i] << ' ';
int D;
cin >> D;
lld past=0;
for(int i=1; i<=D; ++i) {
lld Di;
cin >> Di;
cout << (starting[i]+(Di-1)+past)%DIVIDENT << endl;
past=(past+Di-1)%DIVIDENT;
past=(past*(i+1))%DIVIDENT;
// cerr << '[' << past << ']' << endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |