結果

問題 No.2989 Fibonacci Prize
ユーザー chestnut_68chestnut_68
提出日時 2024-12-15 01:53:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 167,812 KB
実行使用メモリ 43,776 KB
最終ジャッジ日時 2024-12-15 01:53:34
合計ジャッジ時間 7,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
42,240 KB
testcase_01 AC 29 ms
42,112 KB
testcase_02 AC 36 ms
43,648 KB
testcase_03 AC 29 ms
42,112 KB
testcase_04 AC 29 ms
42,240 KB
testcase_05 AC 33 ms
42,112 KB
testcase_06 AC 31 ms
42,112 KB
testcase_07 AC 29 ms
42,112 KB
testcase_08 AC 29 ms
42,240 KB
testcase_09 AC 29 ms
42,240 KB
testcase_10 AC 29 ms
42,240 KB
testcase_11 AC 29 ms
42,240 KB
testcase_12 AC 29 ms
42,112 KB
testcase_13 AC 29 ms
42,240 KB
testcase_14 AC 29 ms
42,240 KB
testcase_15 AC 29 ms
42,240 KB
testcase_16 AC 29 ms
42,240 KB
testcase_17 AC 29 ms
42,112 KB
testcase_18 AC 29 ms
42,112 KB
testcase_19 AC 29 ms
42,240 KB
testcase_20 AC 29 ms
42,112 KB
testcase_21 AC 29 ms
42,240 KB
testcase_22 AC 29 ms
42,240 KB
testcase_23 AC 29 ms
43,264 KB
testcase_24 AC 35 ms
43,008 KB
testcase_25 AC 36 ms
43,392 KB
testcase_26 AC 30 ms
42,752 KB
testcase_27 AC 30 ms
43,520 KB
testcase_28 AC 32 ms
43,008 KB
testcase_29 AC 31 ms
42,496 KB
testcase_30 AC 30 ms
42,624 KB
testcase_31 AC 30 ms
42,496 KB
testcase_32 AC 31 ms
42,368 KB
testcase_33 AC 38 ms
42,880 KB
testcase_34 AC 32 ms
43,648 KB
testcase_35 AC 32 ms
43,520 KB
testcase_36 AC 37 ms
43,776 KB
testcase_37 AC 37 ms
43,776 KB
testcase_38 AC 31 ms
43,392 KB
testcase_39 AC 31 ms
43,520 KB
testcase_40 AC 31 ms
42,880 KB
testcase_41 AC 33 ms
43,648 KB
testcase_42 AC 36 ms
43,392 KB
testcase_43 AC 68 ms
43,392 KB
testcase_44 AC 69 ms
43,520 KB
testcase_45 AC 69 ms
43,520 KB
testcase_46 AC 56 ms
43,648 KB
testcase_47 AC 56 ms
43,776 KB
testcase_48 AC 55 ms
43,776 KB
testcase_49 AC 56 ms
43,776 KB
testcase_50 AC 56 ms
43,776 KB
testcase_51 AC 72 ms
43,648 KB
testcase_52 AC 57 ms
43,776 KB
testcase_53 AC 56 ms
43,776 KB
testcase_54 AC 56 ms
43,776 KB
testcase_55 AC 52 ms
43,520 KB
testcase_56 AC 52 ms
43,648 KB
testcase_57 AC 53 ms
43,648 KB
testcase_58 AC 55 ms
43,776 KB
testcase_59 AC 55 ms
43,648 KB
testcase_60 AC 55 ms
43,776 KB
testcase_61 AC 52 ms
43,648 KB
testcase_62 AC 52 ms
43,520 KB
testcase_63 AC 50 ms
43,520 KB
testcase_64 AC 30 ms
42,112 KB
testcase_65 AC 30 ms
42,240 KB
testcase_66 AC 30 ms
42,240 KB
testcase_67 AC 29 ms
42,112 KB
testcase_68 AC 30 ms
42,240 KB
testcase_69 AC 30 ms
42,240 KB
testcase_70 AC 29 ms
42,240 KB
testcase_71 AC 33 ms
42,240 KB
testcase_72 AC 30 ms
42,240 KB
testcase_73 AC 29 ms
42,240 KB
testcase_74 AC 29 ms
42,112 KB
testcase_75 AC 29 ms
42,112 KB
testcase_76 AC 29 ms
42,112 KB
testcase_77 AC 29 ms
42,112 KB
testcase_78 AC 29 ms
42,112 KB
testcase_79 AC 29 ms
42,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:4:21: warning: 'T' may be used uninitialized [-Wmaybe-uninitialized]
    4 |         int64_t N,M,T,a=0,i;cin>>N>>M;
      |                     ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int64_t N,M,T,a=0,i;cin>>N>>M;
	vector<int64_t>F(5e6,1),R(N,0);
	if(M<3){
		cout<<(N==1?2:0);
		return 0;
	}
	if(N==1){
		cout<<(M-1)*(M-2)/2+3;
		return 0;
	}
	for(i=1;F[i]!=0||F[i+1]!=1;T=++i)F[i+2]=(F[i+1]+F[i])%N;
	for(i=1,F[0]=0;i<=T;i++)R[(F[i+2]-1+N)%N]+=((M-2)/T)+(i<=(M-2)%T?1:0);
	for(i=0,R[0]++;i<N;i++)a+=R[i]*(R[i]-1)/2;
	if(F[(M-1)%T]%N==0)a++;
	if(F[M%T]%N==0)a+=2;
	cout<<a;
}
0