結果

問題 No.554 recurrence formula
ユーザー ryoissyryoissy
提出日時 2017-08-11 22:26:54
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 1,187 ms
コンパイル使用メモリ 158,736 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 21:08:35
合計ジャッジ時間 1,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int n;
ll res[100001];
ll sum[2];
int main(void){
	scanf("%d",&n);
	res[1]=1;
	sum[1]=1;
	for(ll i=2;i<=n;i++){
		if(i%2==0){
			res[i]=i*(sum[1])%MOD;
			sum[0]=(sum[0]+res[i])%MOD;
		}else{
			res[i]=i*(sum[0])%MOD;
			sum[1]=(sum[1]+res[i])%MOD;
		}
	}
	printf("%lld\n",res[n]);
	return 0;
}
0