結果

問題 No.195 フィボナッチ数列の理解(2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-15 02:19:18
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 1,712 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 77,068 KB
実行使用メモリ 77,204 KB
最終ジャッジ日時 2024-07-06 03:46:58
合計ジャッジ時間 3,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
75,672 KB
testcase_01 AC 66 ms
75,704 KB
testcase_02 AC 76 ms
76,452 KB
testcase_03 AC 68 ms
75,552 KB
testcase_04 AC 73 ms
76,808 KB
testcase_05 AC 67 ms
75,692 KB
testcase_06 AC 67 ms
75,932 KB
testcase_07 AC 68 ms
75,400 KB
testcase_08 AC 65 ms
75,428 KB
testcase_09 AC 65 ms
75,528 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 74 ms
76,796 KB
testcase_13 WA -
testcase_14 AC 69 ms
76,808 KB
testcase_15 AC 71 ms
76,700 KB
testcase_16 AC 69 ms
77,192 KB
testcase_17 AC 70 ms
76,956 KB
testcase_18 AC 68 ms
76,700 KB
testcase_19 AC 69 ms
76,560 KB
testcase_20 AC 70 ms
76,684 KB
testcase_21 AC 69 ms
76,928 KB
testcase_22 AC 70 ms
77,092 KB
testcase_23 AC 72 ms
76,844 KB
testcase_24 AC 75 ms
76,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

F10=[0 for i in range(50)]
F01=[0 for i in range(50)]
F10[0]=1
F01[1]=1
for i in range(2,50):
    F10[i]=F10[i-1]+F10[i-2]
    F01[i]=F01[i-1]+F01[i-2]
X=map(int,raw_input().split())
X=list(set(X))
X.sort()
if len(X)==1:
    a=1
    ans=1000000000
    for i in range(50):
        if F01[i]==0:
            if F10[i]==X[0]:
                ans=min(ans,1)
        elif (X[0]-F10[i])%F01[i]==0 and X[0]-F10[i]>0:
            ans =min(ans,(X[0]-F10[i])/F01[i])
    print a,ans
elif len(X)==2:
    x,y=X[0],X[1]
    A,B=1000000000,1000000000
    for i in range(50):
        for j in range(i+1,50):
            if(x*F01[j]-y*F01[i])%(F01[j]*F10[i]-F10[j]*F01[i])!=0:
                continue
            a=(x*F01[j]-y*F01[i])/(F01[j]*F10[i]-F10[j]*F01[i])
            b=(x*F10[j]-y*F10[i])/(F10[j]*F01[i]-F01[j]*F10[i])
            if a<=0 or b<=0:
                continue
            (A,B)=min((A,B),(a,b))
    print A,B
else:
    x,y,z=X[0],X[1],X[2]
    A,B=1000000000,1000000000
    for i in range(50):
        for j in range(i+1,50):
            if(x*F01[j]-y*F01[i])%(F01[j]*F10[i]-F10[j]*F01[i])!=0:
                continue
            a=(x*F01[j]-y*F01[i])/(F01[j]*F10[i]-F10[j]*F01[i])
            b=(x*F10[j]-y*F10[i])/(F10[j]*F01[i]-F01[j]*F10[i])
            if a<=0 or b<=0:
                continue
            #print x,"=",a,"*",F10[i],"+",b,"*",F01[i],"...",i
            #print y,"=",a,"*",F10[j],"+",b,"*",F01[j],"...",j
            ok=False
            for k in range(j+1,50):
                if a*F10[k]+b*F01[k]==z:
                    ok=True
                    break
            if ok:
                (A,B)=min((A,B),(a,b))
    if A==1000000000:
        print -1
    else:
        print A,B
0