結果

問題 No.2989 Fibonacci Prize
ユーザー ygussanyygussany
提出日時 2024-12-14 00:48:56
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 1,348 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 00:49:06
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main()
{
	int N, M;
	scanf("%d %d", &N, &M);
	if (M == 1) {
		if (N == 1) printf("1\n");
		else printf("0\n");
		return 0;
	} else if (M == 2) {
		if (N == 1) printf("2\n");
		else if (N == 2) printf("1\n");
		else printf("0\n");
		return 0;
	} else if (N == 1) {
		printf("%lld\n", (long long)(M - 2) * (M - 1) / 2 + 3);
		return 0;
	}
	
	int i, cur, prev, F[2], sum = 2, num[200001] = {1, 2}, flag = 0, tmp[200001] = {};
	for (i = 3, F[0] = 1, F[1] = 1, cur = 1, prev = 0; i <= M - 2; i++, cur ^= 1, prev ^= 1) {
		F[prev] += F[cur];
		if (F[prev] >= N) F[prev] -= N;
		if (sum == 0 && F[prev] == 0 && F[cur] == 1) {
			if (flag == 0) flag = i;
			else {
				flag = i - flag;
				break;
			}
		}
		sum += F[prev];
		if (sum >= N) sum -= N;
		num[sum]++;
		if (flag > 0) tmp[sum]++;
	}
	
	int j, k = (M - 1 - i) / flag;
	for (j = 0; j < N; j++) num[j] += k * tmp[j];
	i += k * flag;
	for (num[sum]++, i++, cur ^= 1, prev ^= 1; i <= M - 2; i++, cur ^= 1, prev ^= 1) {
		F[prev] += F[cur];
		if (F[prev] >= N) F[prev] -= N;
		sum += F[prev];
		if (sum >= N) sum -= N;
		num[sum]++;
	}
	
	long long ans = -1;
	for (i = 0; i < N; i++) ans += (long long)num[i] * (num[i] - 1) / 2;
	F[prev] += F[cur];
	if (F[prev] % N == 0) ans++;
	if ((F[prev] + F[cur]) % N == 0) ans += 2;
	printf("%lld\n", ans);
	fflush(stdout);
	return 0;
}
0