結果

問題 No.2989 Fibonacci Prize
ユーザー 沙耶花沙耶花
提出日時 2024-12-14 00:35:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 4,840 ms
コンパイル使用メモリ 271,360 KB
実行使用メモリ 28,516 KB
最終ジャッジ日時 2024-12-14 00:35:42
合計ジャッジ時間 14,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 49 ms
8,268 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 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,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 62 ms
8,472 KB
testcase_25 AC 63 ms
9,720 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 20 ms
6,816 KB
testcase_29 AC 22 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 6 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 66 ms
10,504 KB
testcase_34 AC 6 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 67 ms
10,056 KB
testcase_37 AC 72 ms
8,668 KB
testcase_38 AC 5 ms
6,816 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 7 ms
6,816 KB
testcase_41 AC 16 ms
6,820 KB
testcase_42 AC 47 ms
9,536 KB
testcase_43 AC 470 ms
28,388 KB
testcase_44 AC 422 ms
28,412 KB
testcase_45 AC 671 ms
28,516 KB
testcase_46 AC 352 ms
22,728 KB
testcase_47 AC 255 ms
22,196 KB
testcase_48 AC 270 ms
23,660 KB
testcase_49 AC 470 ms
21,912 KB
testcase_50 AC 386 ms
21,664 KB
testcase_51 AC 322 ms
22,912 KB
testcase_52 AC 340 ms
22,900 KB
testcase_53 AC 397 ms
23,008 KB
testcase_54 AC 370 ms
22,608 KB
testcase_55 AC 370 ms
19,460 KB
testcase_56 AC 392 ms
19,348 KB
testcase_57 AC 283 ms
19,264 KB
testcase_58 AC 335 ms
21,880 KB
testcase_59 AC 344 ms
22,352 KB
testcase_60 AC 367 ms
21,524 KB
testcase_61 AC 307 ms
19,200 KB
testcase_62 AC 277 ms
18,964 KB
testcase_63 AC 294 ms
18,984 KB
testcase_64 AC 2 ms
6,816 KB
testcase_65 AC 2 ms
6,820 KB
testcase_66 AC 1 ms
6,816 KB
testcase_67 AC 2 ms
6,820 KB
testcase_68 AC 2 ms
6,820 KB
testcase_69 AC 2 ms
6,816 KB
testcase_70 AC 2 ms
6,820 KB
testcase_71 AC 2 ms
6,816 KB
testcase_72 AC 1 ms
6,816 KB
testcase_73 AC 2 ms
6,816 KB
testcase_74 AC 2 ms
6,816 KB
testcase_75 AC 1 ms
6,820 KB
testcase_76 AC 2 ms
6,816 KB
testcase_77 AC 2 ms
6,816 KB
testcase_78 AC 2 ms
6,816 KB
testcase_79 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 2000000001
#define Inf64 4000000000000000001LL


int main(){
	
	long long N,M;
	cin>>N>>M;
	if(M<=2){
		if(1%N==0){
			cout<<2<<endl;
		}
		else cout<<0<<endl;
		return 0;
	}
	vector<pair<long long,long long>> t(1,{1%N,1%N});
	
	while(true){
		long long x = t.back().second;
		long long y = x + t.back().first;
		y %= N;
		if(x==1%N&&y==1%N)break;
		t.push_back({x,y});
	}
	map<long long,long long> mp;
	rep(i,t.size()){
		mp[t[i].first] += M / t.size();
	}
	rep(i,M % t.size()){
		mp[t[i].first] ++;
	}
	mp[t[0].first] --;
	long long ans = 0;
	for(auto a:mp){
		long long v = a.second;
		ans += v * (v-1) / 2;
	}
	{
		long long tt = M - 2;
		if(t[tt%t.size()].first == 0)ans++;
	}
	{
		long long tt = M - 1;
		if(t[tt%t.size()].first == 0){
			ans ++;
			if(M>=3)ans++;
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0