結果

問題 No.2989 Fibonacci Prize
ユーザー chestnut_68chestnut_68
提出日時 2024-12-15 02:57:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 168,856 KB
実行使用メモリ 43,960 KB
最終ジャッジ日時 2024-12-15 02:57:35
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
42,244 KB
testcase_01 AC 13 ms
42,148 KB
testcase_02 AC 19 ms
43,576 KB
testcase_03 AC 13 ms
42,160 KB
testcase_04 AC 13 ms
42,268 KB
testcase_05 AC 13 ms
42,192 KB
testcase_06 AC 13 ms
42,196 KB
testcase_07 AC 14 ms
42,304 KB
testcase_08 AC 12 ms
42,308 KB
testcase_09 AC 13 ms
42,220 KB
testcase_10 AC 13 ms
42,300 KB
testcase_11 AC 12 ms
42,252 KB
testcase_12 AC 13 ms
42,284 KB
testcase_13 AC 13 ms
42,236 KB
testcase_14 AC 13 ms
42,252 KB
testcase_15 AC 13 ms
42,212 KB
testcase_16 AC 13 ms
42,248 KB
testcase_17 AC 26 ms
42,368 KB
testcase_18 AC 13 ms
42,252 KB
testcase_19 AC 13 ms
42,260 KB
testcase_20 AC 14 ms
42,216 KB
testcase_21 AC 13 ms
42,248 KB
testcase_22 AC 13 ms
42,096 KB
testcase_23 AC 14 ms
43,240 KB
testcase_24 AC 18 ms
43,060 KB
testcase_25 AC 19 ms
43,348 KB
testcase_26 AC 12 ms
42,712 KB
testcase_27 AC 14 ms
43,516 KB
testcase_28 AC 15 ms
42,948 KB
testcase_29 AC 14 ms
42,380 KB
testcase_30 AC 14 ms
42,452 KB
testcase_31 AC 14 ms
42,500 KB
testcase_32 AC 13 ms
42,344 KB
testcase_33 AC 20 ms
42,920 KB
testcase_34 AC 15 ms
43,560 KB
testcase_35 AC 14 ms
43,368 KB
testcase_36 AC 19 ms
43,896 KB
testcase_37 AC 20 ms
43,888 KB
testcase_38 AC 15 ms
43,396 KB
testcase_39 AC 15 ms
43,628 KB
testcase_40 AC 14 ms
42,784 KB
testcase_41 AC 16 ms
43,748 KB
testcase_42 AC 19 ms
43,372 KB
testcase_43 AC 43 ms
43,476 KB
testcase_44 AC 44 ms
43,560 KB
testcase_45 AC 44 ms
43,460 KB
testcase_46 AC 33 ms
43,820 KB
testcase_47 AC 34 ms
43,788 KB
testcase_48 AC 33 ms
43,852 KB
testcase_49 AC 50 ms
43,772 KB
testcase_50 AC 34 ms
43,960 KB
testcase_51 AC 34 ms
43,784 KB
testcase_52 AC 34 ms
43,796 KB
testcase_53 AC 34 ms
43,800 KB
testcase_54 AC 35 ms
43,768 KB
testcase_55 AC 31 ms
43,560 KB
testcase_56 AC 31 ms
43,552 KB
testcase_57 AC 31 ms
43,436 KB
testcase_58 AC 33 ms
43,780 KB
testcase_59 AC 34 ms
43,616 KB
testcase_60 AC 32 ms
43,780 KB
testcase_61 AC 31 ms
43,500 KB
testcase_62 AC 31 ms
43,404 KB
testcase_63 AC 31 ms
43,532 KB
testcase_64 AC 13 ms
42,232 KB
testcase_65 AC 13 ms
42,128 KB
testcase_66 AC 12 ms
42,192 KB
testcase_67 AC 13 ms
42,252 KB
testcase_68 AC 13 ms
42,272 KB
testcase_69 AC 14 ms
42,332 KB
testcase_70 AC 12 ms
42,284 KB
testcase_71 AC 13 ms
42,216 KB
testcase_72 AC 14 ms
42,188 KB
testcase_73 AC 14 ms
42,312 KB
testcase_74 AC 13 ms
42,316 KB
testcase_75 AC 13 ms
42,252 KB
testcase_76 AC 13 ms
42,248 KB
testcase_77 AC 13 ms
42,256 KB
testcase_78 AC 14 ms
42,300 KB
testcase_79 AC 14 ms
42,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    2 | main(){
      | ^~~~
main.cpp: In function 'int main()':
main.cpp:3:21: warning: 'T' may be used uninitialized [-Wmaybe-uninitialized]
    3 |         int64_t N,M,T,a=0,i=1;std::cin>>N>>M;
      |                     ^

ソースコード

diff #

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