結果

問題 No.2989 Fibonacci Prize
ユーザー 👑 potato167potato167
提出日時 2024-12-08 18:48:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 215,540 KB
実行使用メモリ 17,736 KB
最終ジャッジ日時 2024-12-13 23:32:46
合計ジャッジ時間 128,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,660 KB
testcase_01 AC 2 ms
10,788 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 1,528 ms
13,636 KB
testcase_05 AC 760 ms
10,528 KB
testcase_06 AC 32 ms
13,640 KB
testcase_07 TLE -
testcase_08 AC 782 ms
13,636 KB
testcase_09 AC 549 ms
10,144 KB
testcase_10 AC 597 ms
10,276 KB
testcase_11 WA -
testcase_12 AC 1,530 ms
13,640 KB
testcase_13 AC 2 ms
10,532 KB
testcase_14 AC 2 ms
13,644 KB
testcase_15 AC 2 ms
10,660 KB
testcase_16 AC 1 ms
13,640 KB
testcase_17 AC 1 ms
10,784 KB
testcase_18 AC 2 ms
13,636 KB
testcase_19 WA -
testcase_20 AC 2 ms
13,632 KB
testcase_21 AC 2 ms
10,404 KB
testcase_22 AC 2 ms
13,640 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 253 ms
13,636 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 27 ms
10,788 KB
testcase_40 TLE -
testcase_41 AC 823 ms
10,912 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 AC 2 ms
6,816 KB
testcase_65 AC 2 ms
6,816 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 2 ms
6,816 KB
testcase_69 AC 2 ms
6,816 KB
testcase_70 AC 2 ms
6,820 KB
testcase_71 WA -
testcase_72 AC 2 ms
6,820 KB
testcase_73 AC 1 ms
6,820 KB
testcase_74 AC 2 ms
6,816 KB
testcase_75 AC 2 ms
6,820 KB
testcase_76 AC 2 ms
6,820 KB
testcase_77 AC 1 ms
6,816 KB
testcase_78 AC 2 ms
6,816 KB
testcase_79 AC 2 ms
17,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define all(p) (p).begin(),(p).end()

int main(){
	ll N, M;
	cin >> N >> M;
	if (M <= 2){
		cout << (N == 1 ? 2 : 0) << "\n";
		return 0;
	}
	ll ans = 0;
	int a = 0, b = 1;
	vector<int> p(N);
	for (int i = 2; i <= M; i++){
		a = (a + b);
		if (a >= N) a -= N;
		swap(a, b);
		ans += p[b];
		p[b]++;
	}
	// if (a == 0) ans++;
	if (b == 0) ans += 2;
	cout << ans << "\n";
}
0