結果

問題 No.2989 Fibonacci Prize
ユーザー chestnut_68chestnut_68
提出日時 2024-12-14 08:36:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 170,136 KB
実行使用メモリ 786,952 KB
最終ジャッジ日時 2024-12-14 08:37:02
合計ジャッジ時間 13,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 MLE -
testcase_03 WA -
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 133 ms
489,016 KB
testcase_24 AC 98 ms
344,080 KB
testcase_25 MLE -
testcase_26 AC 67 ms
251,660 KB
testcase_27 MLE -
testcase_28 AC 92 ms
348,080 KB
testcase_29 AC 30 ms
99,664 KB
testcase_30 AC 38 ms
148,260 KB
testcase_31 AC 28 ms
94,980 KB
testcase_32 AC 14 ms
48,104 KB
testcase_33 AC 103 ms
363,096 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 88 ms
335,356 KB
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 MLE -
testcase_57 MLE -
testcase_58 MLE -
testcase_59 MLE -
testcase_60 MLE -
testcase_61 MLE -
testcase_62 MLE -
testcase_63 MLE -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 2 ms
6,816 KB
testcase_70 AC 2 ms
6,816 KB
testcase_71 AC 2 ms
6,816 KB
testcase_72 WA -
testcase_73 AC 2 ms
6,820 KB
testcase_74 AC 2 ms
6,816 KB
testcase_75 AC 2 ms
6,820 KB
testcase_76 WA -
testcase_77 AC 2 ms
6,816 KB
testcase_78 AC 2 ms
6,816 KB
testcase_79 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int64_t N,M,T=-1;
	cin>>N>>M;
	vector<int64_t> F(500*N),R(N,0),RR(N,0);
	F[1]=F[2]=1;
	for(int i=3;i<500*N;i++){
		F[i]=(F[i-1]+F[i-2])%N;
		if(F[i-1]==0&&F[i]==1){
			T=i-1;
			break;
		}
	}
	for(int i=1;i<=T;i++){
		R[(F[(i+2)%T]-1+N)%N]++;
	}
	int64_t K=(M-2)/T,r=(M-2)%T;
	
	for(int i=1;i<=r;i++){
		RR[(F[(i+2)%T]-1+N)%N]++;
	}
	RR[0]++;
	int64_t ans=0;
	for(int i=0;i<N;i++){
		R[i]*=K;
		R[i]+=RR[i];
		ans+=R[i]*(R[i]-1)/2;
	}
	if(F[(M-1)%T]%N==0)ans++;
	if(F[M%T]%N==0)ans+=2;
	cout<<ans<<endl;
}
0