結果

問題 No.2989 Fibonacci Prize
ユーザー 沙耶花沙耶花
提出日時 2024-12-14 00:28:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 4,425 ms
コンパイル使用メモリ 271,000 KB
実行使用メモリ 28,768 KB
最終ジャッジ日時 2024-12-14 00:28:57
合計ジャッジ時間 15,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 49 ms
8,308 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 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 WA -
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 59 ms
8,352 KB
testcase_25 AC 67 ms
10,744 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 21 ms
6,820 KB
testcase_29 AC 21 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 5 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 7 ms
6,816 KB
testcase_35 WA -
testcase_36 AC 68 ms
10,060 KB
testcase_37 WA -
testcase_38 AC 5 ms
6,820 KB
testcase_39 WA -
testcase_40 AC 7 ms
6,816 KB
testcase_41 WA -
testcase_42 AC 47 ms
9,084 KB
testcase_43 AC 530 ms
28,068 KB
testcase_44 AC 498 ms
28,200 KB
testcase_45 WA -
testcase_46 AC 388 ms
22,196 KB
testcase_47 AC 306 ms
23,376 KB
testcase_48 WA -
testcase_49 AC 491 ms
22,032 KB
testcase_50 AC 445 ms
21,548 KB
testcase_51 WA -
testcase_52 AC 409 ms
22,560 KB
testcase_53 AC 409 ms
22,612 KB
testcase_54 WA -
testcase_55 AC 341 ms
19,392 KB
testcase_56 AC 274 ms
19,476 KB
testcase_57 WA -
testcase_58 AC 403 ms
21,872 KB
testcase_59 AC 353 ms
21,752 KB
testcase_60 WA -
testcase_61 AC 358 ms
19,032 KB
testcase_62 AC 273 ms
18,920 KB
testcase_63 WA -
testcase_64 AC 2 ms
6,820 KB
testcase_65 AC 2 ms
6,820 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 2 ms
6,816 KB
testcase_70 WA -
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 WA -
testcase_76 WA -
testcase_77 AC 2 ms
6,816 KB
testcase_78 AC 2 ms
6,820 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==1){
		if(1%N==0){
			cout<<2<<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;
	}
	rep(i,2){
		long long tt = M - 2 + i;
		if(t[tt%t.size()].first == 0)ans++;
	}
	cout<<ans<<endl;
	
	return 0;
}
0