結果

問題 No.2989 Fibonacci Prize
ユーザー titiatitia
提出日時 2024-12-14 05:26:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,605 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 167,424 KB
最終ジャッジ日時 2024-12-14 05:27:08
合計ジャッジ時間 12,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 41 ms
51,968 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 43 ms
51,712 KB
testcase_12 WA -
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 41 ms
51,712 KB
testcase_21 AC 39 ms
51,712 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 69 ms
73,728 KB
testcase_35 WA -
testcase_36 AC 126 ms
97,920 KB
testcase_37 WA -
testcase_38 AC 62 ms
69,248 KB
testcase_39 WA -
testcase_40 AC 64 ms
68,224 KB
testcase_41 WA -
testcase_42 AC 99 ms
84,352 KB
testcase_43 WA -
testcase_44 AC 343 ms
167,424 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 252 ms
138,880 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 292 ms
138,752 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 279 ms
138,752 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 231 ms
132,608 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 289 ms
138,112 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 236 ms
132,352 KB
testcase_63 WA -
testcase_64 AC 40 ms
51,712 KB
testcase_65 AC 39 ms
52,352 KB
testcase_66 AC 40 ms
52,512 KB
testcase_67 AC 40 ms
52,096 KB
testcase_68 AC 40 ms
52,224 KB
testcase_69 AC 43 ms
51,840 KB
testcase_70 AC 43 ms
52,096 KB
testcase_71 AC 41 ms
52,608 KB
testcase_72 AC 40 ms
52,096 KB
testcase_73 AC 39 ms
51,968 KB
testcase_74 AC 41 ms
52,256 KB
testcase_75 AC 40 ms
52,224 KB
testcase_76 AC 41 ms
52,096 KB
testcase_77 AC 40 ms
51,840 KB
testcase_78 AC 39 ms
51,968 KB
testcase_79 AC 40 ms
51,968 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

y=M%len(F)

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

print(ANS)

    
            
    
0