結果

問題 No.2989 Fibonacci Prize
ユーザー kmjpkmjp
提出日時 2024-12-14 00:41:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,359 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 211,280 KB
実行使用メモリ 86,380 KB
最終ジャッジ日時 2024-12-14 00:43:55
合計ジャッジ時間 155,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
20,480 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 554 ms
13,636 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 3 ms
12,668 KB
testcase_14 AC 2 ms
12,680 KB
testcase_15 AC 2 ms
13,636 KB
testcase_16 AC 2 ms
21,120 KB
testcase_17 AC 2 ms
13,632 KB
testcase_18 AC 2 ms
23,680 KB
testcase_19 AC 2 ms
13,636 KB
testcase_20 AC 2 ms
12,416 KB
testcase_21 AC 2 ms
13,632 KB
testcase_22 AC 2 ms
12,548 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 259 ms
13,636 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 WA -
testcase_65 AC 2 ms
6,816 KB
testcase_66 AC 2 ms
6,820 KB
testcase_67 AC 2 ms
6,816 KB
testcase_68 AC 2 ms
6,820 KB
testcase_69 AC 2 ms
6,820 KB
testcase_70 AC 2 ms
6,816 KB
testcase_71 AC 2 ms
6,816 KB
testcase_72 AC 2 ms
6,816 KB
testcase_73 AC 2 ms
6,816 KB
testcase_74 AC 2 ms
6,816 KB
testcase_75 AC 2 ms
6,816 KB
testcase_76 AC 2 ms
6,820 KB
testcase_77 AC 2 ms
6,820 KB
testcase_78 AC 3 ms
6,816 KB
testcase_79 AC 3 ms
55,140 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;}
//-------------------------------------------------------

ll N,M,L;
ll F[1<<21];
int memo2[1<<20];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	map<pair<int,int>,int> memo;
	F[1]=F[2]=1%N;
	memo[{1%N,1%N}]=1;
	for(i=3;i<=1<<20;i++) {
		F[i]=(F[i-1]+F[i-2])%N;
		if(memo.count({F[i-1],F[i]})) {
			L=i-2;
			break;
		}
		memo[{F[i-1],F[i]}]=i-1;
	}
	
	ll ret=0;
	// F[M]
	if(F[M%L]==0) ret++;
	
	if(M-1>0&&F[(M-1)%L]==0) ret++;
	if(M-2>0&&(F[(M-1)%L]+F[(M-2)%L])%N==0) ret++;
	M-=2;
	
	memo2[0]=1;
	int cur=0;
	for(i=1;i<=M;i++) {
		cur=(cur+F[i%L])%N;
		ret+=memo2[cur]++;
	}
	
	cout<<ret<<endl;
	
}


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