結果

問題 No.2989 Fibonacci Prize
ユーザー titiatitia
提出日時 2024-12-14 05:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 1,621 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 167,232 KB
最終ジャッジ日時 2024-12-14 05:37:46
合計ジャッジ時間 11,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 40 ms
53,064 KB
testcase_02 AC 116 ms
95,508 KB
testcase_03 AC 40 ms
53,288 KB
testcase_04 AC 39 ms
53,068 KB
testcase_05 AC 40 ms
52,208 KB
testcase_06 AC 40 ms
53,916 KB
testcase_07 AC 39 ms
53,008 KB
testcase_08 AC 39 ms
53,476 KB
testcase_09 AC 39 ms
53,048 KB
testcase_10 AC 40 ms
52,672 KB
testcase_11 AC 40 ms
52,636 KB
testcase_12 AC 40 ms
52,332 KB
testcase_13 AC 41 ms
52,332 KB
testcase_14 AC 39 ms
52,824 KB
testcase_15 AC 40 ms
54,156 KB
testcase_16 AC 39 ms
53,080 KB
testcase_17 AC 40 ms
52,884 KB
testcase_18 AC 40 ms
52,348 KB
testcase_19 AC 40 ms
52,340 KB
testcase_20 AC 40 ms
53,160 KB
testcase_21 AC 40 ms
52,072 KB
testcase_22 AC 40 ms
53,552 KB
testcase_23 AC 60 ms
68,568 KB
testcase_24 AC 106 ms
92,660 KB
testcase_25 AC 120 ms
96,956 KB
testcase_26 AC 57 ms
66,424 KB
testcase_27 AC 58 ms
68,300 KB
testcase_28 AC 78 ms
76,456 KB
testcase_29 AC 77 ms
75,948 KB
testcase_30 AC 54 ms
64,900 KB
testcase_31 AC 64 ms
68,984 KB
testcase_32 AC 58 ms
66,180 KB
testcase_33 AC 116 ms
98,132 KB
testcase_34 AC 71 ms
75,128 KB
testcase_35 AC 58 ms
68,224 KB
testcase_36 AC 126 ms
98,004 KB
testcase_37 AC 113 ms
97,568 KB
testcase_38 AC 62 ms
70,080 KB
testcase_39 AC 66 ms
72,440 KB
testcase_40 AC 61 ms
69,464 KB
testcase_41 AC 78 ms
77,828 KB
testcase_42 AC 102 ms
84,820 KB
testcase_43 AC 358 ms
166,996 KB
testcase_44 AC 334 ms
167,232 KB
testcase_45 AC 338 ms
167,132 KB
testcase_46 AC 310 ms
139,116 KB
testcase_47 AC 265 ms
139,188 KB
testcase_48 AC 253 ms
139,024 KB
testcase_49 AC 256 ms
139,032 KB
testcase_50 AC 281 ms
138,956 KB
testcase_51 AC 263 ms
138,840 KB
testcase_52 AC 279 ms
138,916 KB
testcase_53 AC 280 ms
139,184 KB
testcase_54 AC 302 ms
138,888 KB
testcase_55 AC 235 ms
132,536 KB
testcase_56 AC 226 ms
132,660 KB
testcase_57 AC 223 ms
132,780 KB
testcase_58 AC 249 ms
138,608 KB
testcase_59 AC 282 ms
138,704 KB
testcase_60 AC 256 ms
138,632 KB
testcase_61 AC 213 ms
132,468 KB
testcase_62 AC 220 ms
132,352 KB
testcase_63 AC 228 ms
132,280 KB
testcase_64 AC 40 ms
53,148 KB
testcase_65 AC 40 ms
52,572 KB
testcase_66 AC 41 ms
52,608 KB
testcase_67 AC 39 ms
52,624 KB
testcase_68 AC 40 ms
53,996 KB
testcase_69 AC 41 ms
52,536 KB
testcase_70 AC 41 ms
53,352 KB
testcase_71 AC 41 ms
52,616 KB
testcase_72 AC 40 ms
52,820 KB
testcase_73 AC 40 ms
53,084 KB
testcase_74 AC 40 ms
52,696 KB
testcase_75 AC 40 ms
53,876 KB
testcase_76 AC 40 ms
52,740 KB
testcase_77 AC 40 ms
53,212 KB
testcase_78 AC 39 ms
52,880 KB
testcase_79 AC 39 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

if M<=100:
    F=[1,1]

    for i in range(M+3):
        F.append(F[-1]+F[-2])

    MAX=F[M-1]
    ANS=0

    for i in range(M+3):
        now=0
        for j in range(i,M+3):
            now+=F[j]

            if now%N==0 and now<=MAX:
                #print(i,j)
                ANS+=1

    print(ANS)
    exit()

if N!=1:
    F=[0,1]

    while True:
        F.append((F[-1]+F[-2])%N)

        if F[-2]==0 and F[-1]==1:
            break

    F=F[1:-1]
else:
    F=[0]
    
LIST=[[0]]
LIST=[[] for i in range(N)]

for i in range(len(F)):
    LIST[F[i]].append(i)

# 和がF[M-1]以下

# F[x]~F[y]
# = F[y+2] - F[x+1]

# y=M-1のとき
# x=M-1のときのみOK

# y=M-2のとき、
# x=M-3のとき、F[M] - F[M-2] = F[M-1]でOK
# なので、x=y-1かy

# y=M-3のとき、何でもOK

# y+1を全探索する。
# y<=M-3のとき、y+2<=M-1
# x<=M-3なので、x+1<=M-2

# なので、[0,M-1]で正しいものを計算し、例外として、y=M-1,M-2のときを調べる。

ANS=0
rep=(M-1)//len(F)
for i in range(N):
    L=LIST[i]

    ko=rep*len(L)

    for j in range(len(L)):
        if L[j]+rep*len(F)<=M-1:
            ko+=1
        else:
            break

    #print("!",ANS,ko)
        
    ANS+=ko*(ko-1)//2

    if L and L[0]==0:
        ANS-=ko-1

#print(ANS)
y=(M+1)%len(F)
x=M%len(F)

for i in range(N):
    if x in LIST[i] and y in LIST[i]:
        ANS+=1

#print(ANS)
y=M%len(F)

for i in range(N):
    if y in LIST[i]:
        if (y-1)%len(F) in LIST[i]:
            ANS+=1
        if (y-2)%len(F) in LIST[i]:
            ANS+=1

print(ANS)

    
            
    
0