結果

問題 No.2989 Fibonacci Prize
ユーザー 👑 potato167potato167
提出日時 2024-12-14 00:54:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 969 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 130,048 KB
最終ジャッジ日時 2024-12-14 00:54:21
合計ジャッジ時間 6,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 61 ms
71,552 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,456 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 38 ms
51,840 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 42 ms
51,840 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 48 ms
60,672 KB
testcase_24 AC 61 ms
72,192 KB
testcase_25 AC 61 ms
72,184 KB
testcase_26 AC 46 ms
57,856 KB
testcase_27 AC 45 ms
59,264 KB
testcase_28 AC 53 ms
64,256 KB
testcase_29 AC 50 ms
64,128 KB
testcase_30 AC 43 ms
57,856 KB
testcase_31 AC 50 ms
61,440 KB
testcase_32 AC 45 ms
59,520 KB
testcase_33 AC 59 ms
73,804 KB
testcase_34 AC 50 ms
63,232 KB
testcase_35 AC 41 ms
59,392 KB
testcase_36 AC 58 ms
72,832 KB
testcase_37 AC 63 ms
73,600 KB
testcase_38 AC 49 ms
61,696 KB
testcase_39 AC 46 ms
61,824 KB
testcase_40 AC 49 ms
61,952 KB
testcase_41 AC 56 ms
64,768 KB
testcase_42 AC 63 ms
71,680 KB
testcase_43 AC 107 ms
129,536 KB
testcase_44 AC 103 ms
128,896 KB
testcase_45 AC 102 ms
130,048 KB
testcase_46 AC 84 ms
104,960 KB
testcase_47 AC 83 ms
103,552 KB
testcase_48 AC 85 ms
104,192 KB
testcase_49 AC 86 ms
104,448 KB
testcase_50 AC 87 ms
104,960 KB
testcase_51 AC 87 ms
104,960 KB
testcase_52 AC 83 ms
104,960 KB
testcase_53 AC 83 ms
104,904 KB
testcase_54 AC 110 ms
104,576 KB
testcase_55 AC 83 ms
99,584 KB
testcase_56 AC 85 ms
99,584 KB
testcase_57 AC 82 ms
100,096 KB
testcase_58 AC 87 ms
104,832 KB
testcase_59 AC 88 ms
104,448 KB
testcase_60 AC 89 ms
104,448 KB
testcase_61 AC 85 ms
99,840 KB
testcase_62 AC 85 ms
99,456 KB
testcase_63 AC 87 ms
99,328 KB
testcase_64 AC 42 ms
52,096 KB
testcase_65 AC 41 ms
51,840 KB
testcase_66 AC 40 ms
51,456 KB
testcase_67 AC 39 ms
51,456 KB
testcase_68 AC 39 ms
51,968 KB
testcase_69 AC 41 ms
51,968 KB
testcase_70 AC 43 ms
51,584 KB
testcase_71 AC 42 ms
51,840 KB
testcase_72 AC 39 ms
51,712 KB
testcase_73 AC 39 ms
52,224 KB
testcase_74 AC 39 ms
51,968 KB
testcase_75 AC 40 ms
52,352 KB
testcase_76 AC 38 ms
51,968 KB
testcase_77 AC 39 ms
51,584 KB
testcase_78 AC 39 ms
52,352 KB
testcase_79 AC 40 ms
52,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if M <= 2:
	print(2 if N == 1 else 0)
	exit()
if N == 1:
	print(3 + (M - 1) * (M - 2) // 2)
	exit()
a = 1; b = 1
fib = []
while True:
	a = (a + b)
	if a >= N: a -= N
	a, b = b, a
	fib.append(a)
	if a == 1 and b == 1:
		break
p = [0] * N
L = len(fib)
syo = (M - 1) // L 
rem = (M - 1) % L 
for i in range(L):
	p[fib[i]] += syo + (1 if i < rem else 0)
ans = 0
if fib[(M - 2) % L] == 0: ans += 2
if fib[(M - 3) % L] == 0: ans += 1
for x in p: ans += x * (x - 1) // 2
print(ans)
0