結果

問題 No.2989 Fibonacci Prize
ユーザー titiatitia
提出日時 2024-12-14 05:14:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,638 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 167,296 KB
最終ジャッジ日時 2024-12-14 05:14:43
合計ジャッジ時間 11,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 118 ms
95,104 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 WA -
testcase_12 AC 42 ms
51,712 KB
testcase_13 AC 43 ms
51,712 KB
testcase_14 AC 43 ms
52,096 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 41 ms
52,096 KB
testcase_23 AC 62 ms
68,148 KB
testcase_24 AC 107 ms
92,992 KB
testcase_25 AC 122 ms
96,864 KB
testcase_26 AC 58 ms
65,664 KB
testcase_27 AC 58 ms
66,944 KB
testcase_28 AC 78 ms
77,440 KB
testcase_29 AC 75 ms
75,776 KB
testcase_30 AC 60 ms
63,616 KB
testcase_31 AC 66 ms
68,992 KB
testcase_32 AC 58 ms
65,536 KB
testcase_33 AC 115 ms
98,176 KB
testcase_34 WA -
testcase_35 AC 57 ms
67,584 KB
testcase_36 WA -
testcase_37 AC 115 ms
97,280 KB
testcase_38 WA -
testcase_39 AC 67 ms
72,320 KB
testcase_40 WA -
testcase_41 AC 75 ms
78,080 KB
testcase_42 WA -
testcase_43 AC 337 ms
166,912 KB
testcase_44 WA -
testcase_45 AC 313 ms
167,168 KB
testcase_46 AC 267 ms
138,624 KB
testcase_47 WA -
testcase_48 AC 247 ms
139,024 KB
testcase_49 AC 222 ms
138,856 KB
testcase_50 WA -
testcase_51 AC 285 ms
138,496 KB
testcase_52 AC 240 ms
138,624 KB
testcase_53 WA -
testcase_54 AC 276 ms
139,008 KB
testcase_55 AC 216 ms
132,536 KB
testcase_56 WA -
testcase_57 AC 217 ms
132,644 KB
testcase_58 AC 252 ms
138,472 KB
testcase_59 WA -
testcase_60 AC 239 ms
138,496 KB
testcase_61 AC 245 ms
132,060 KB
testcase_62 WA -
testcase_63 AC 237 ms
132,096 KB
testcase_64 AC 41 ms
52,480 KB
testcase_65 AC 40 ms
52,608 KB
testcase_66 AC 40 ms
52,480 KB
testcase_67 AC 38 ms
52,224 KB
testcase_68 AC 38 ms
52,096 KB
testcase_69 AC 38 ms
52,480 KB
testcase_70 AC 40 ms
51,968 KB
testcase_71 AC 39 ms
51,968 KB
testcase_72 AC 38 ms
51,968 KB
testcase_73 AC 43 ms
51,712 KB
testcase_74 AC 41 ms
51,584 KB
testcase_75 AC 39 ms
51,968 KB
testcase_76 AC 38 ms
52,096 KB
testcase_77 AC 37 ms
51,712 KB
testcase_78 AC 39 ms
52,352 KB
testcase_79 AC 37 ms
52,224 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
        
    ANS+=ko*(ko-1)//2

    if L and L[0]==0:
        ANS-=ko-1
    if len(L)>=2 and L[0]==0 and L[1]==1:
        ANS-=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