結果

問題 No.1331 Moving Penguin
ユーザー kmjpkmjp
提出日時 2021-01-09 01:49:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 753 ms / 1,500 ms
コード長 1,278 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 200,940 KB
実行使用メモリ 404,736 KB
最終ジャッジ日時 2024-11-07 15:00:34
合計ジャッジ時間 33,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
34,048 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 734 ms
404,608 KB
testcase_05 AC 715 ms
404,608 KB
testcase_06 AC 720 ms
404,608 KB
testcase_07 AC 693 ms
404,608 KB
testcase_08 AC 699 ms
404,608 KB
testcase_09 AC 734 ms
404,608 KB
testcase_10 AC 712 ms
404,608 KB
testcase_11 AC 728 ms
404,480 KB
testcase_12 AC 716 ms
404,608 KB
testcase_13 AC 705 ms
404,608 KB
testcase_14 AC 736 ms
404,608 KB
testcase_15 AC 690 ms
404,608 KB
testcase_16 AC 692 ms
404,608 KB
testcase_17 AC 705 ms
404,736 KB
testcase_18 AC 720 ms
404,736 KB
testcase_19 AC 753 ms
404,608 KB
testcase_20 AC 728 ms
404,736 KB
testcase_21 AC 713 ms
404,608 KB
testcase_22 AC 708 ms
404,608 KB
testcase_23 AC 729 ms
404,608 KB
testcase_24 AC 710 ms
404,608 KB
testcase_25 AC 715 ms
404,608 KB
testcase_26 AC 714 ms
404,608 KB
testcase_27 AC 705 ms
404,608 KB
testcase_28 AC 749 ms
404,736 KB
testcase_29 AC 701 ms
404,736 KB
testcase_30 AC 233 ms
138,240 KB
testcase_31 AC 427 ms
230,784 KB
testcase_32 AC 225 ms
122,496 KB
testcase_33 AC 333 ms
181,376 KB
testcase_34 AC 501 ms
273,024 KB
testcase_35 AC 733 ms
404,736 KB
testcase_36 AC 699 ms
404,736 KB
testcase_37 AC 712 ms
404,608 KB
testcase_38 AC 252 ms
144,896 KB
testcase_39 AC 684 ms
391,424 KB
testcase_40 AC 361 ms
204,032 KB
testcase_41 AC 722 ms
404,608 KB
testcase_42 AC 722 ms
404,608 KB
testcase_43 AC 711 ms
404,608 KB
testcase_44 AC 683 ms
404,608 KB
testcase_45 AC 689 ms
404,608 KB
testcase_46 AC 687 ms
404,608 KB
testcase_47 AC 682 ms
404,736 KB
testcase_48 AC 708 ms
404,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
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(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int A[101010];
ll dp[101010][510];
ll S[101010];
const ll mo=1000000007;
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	S[0]=1;
	for(i=1;i<=N;i++) {
		cin>>x;
		
		S[i]+=S[i-1];
		for(j=1;j<=500;j++) {
			S[i]+=dp[i][j];
			(dp[i+j][j]+=dp[i][j])%=mo;
		}
		S[i]%=mo;
		
		
		if(i==N) cout<<S[i]<<endl;
		
		if(x==1) {
			(dp[i+2][1]+=S[i])%=mo;
		}
		else if(x<=500) {
			(dp[i+x][x]+=S[i])%=mo;
		}
		else {
			for(j=i+x;j<=N;j+=x) S[j]+=S[i];
		}
		
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0