結果

問題 No.2363 k-bonacci
ユーザー FromBooskaFromBooska
提出日時 2023-06-30 18:48:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-07-07 06:13:56
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,648 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 35 ms
56,704 KB
testcase_05 AC 36 ms
57,796 KB
testcase_06 AC 60 ms
71,040 KB
testcase_07 AC 65 ms
75,576 KB
testcase_08 AC 66 ms
75,372 KB
testcase_09 AC 63 ms
75,528 KB
testcase_10 AC 44 ms
63,104 KB
testcase_11 AC 57 ms
70,912 KB
testcase_12 AC 46 ms
64,128 KB
testcase_13 AC 56 ms
71,808 KB
testcase_14 AC 69 ms
75,392 KB
testcase_15 AC 58 ms
72,704 KB
testcase_16 AC 73 ms
75,520 KB
testcase_17 AC 70 ms
75,520 KB
testcase_18 AC 71 ms
75,776 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 71 ms
75,648 KB
testcase_21 AC 39 ms
59,392 KB
testcase_22 WA -
testcase_23 AC 33 ms
52,096 KB
testcase_24 AC 32 ms
51,712 KB
testcase_25 AC 32 ms
51,584 KB
testcase_26 AC 32 ms
51,712 KB
testcase_27 AC 70 ms
75,700 KB
testcase_28 AC 33 ms
51,328 KB
testcase_29 AC 32 ms
51,584 KB
testcase_30 AC 68 ms
75,648 KB
testcase_31 AC 69 ms
75,384 KB
testcase_32 AC 70 ms
75,856 KB
testcase_33 AC 67 ms
76,032 KB
testcase_34 AC 34 ms
51,328 KB
testcase_35 AC 72 ms
76,236 KB
testcase_36 AC 34 ms
51,712 KB
testcase_37 AC 32 ms
52,224 KB
testcase_38 AC 69 ms
76,056 KB
testcase_39 AC 72 ms
75,520 KB
testcase_40 AC 71 ms
75,444 KB
testcase_41 AC 70 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 通常のフィボナッチ数列は100項で10**18を超える
# つまりN<10**18ならば、すぐに達するだろう
# ということは100-bonacciまで調べれば十分なのでは
# それ以上調べてもN<10**18の存在は変わらない

N = int(input())

if N == 1:
    print(1)
    exit()

ans = -1
found = False
for k in range(2, 101):
    if found == True:
        break
    fibonacci = [1, 1]
    for j in range(100):
        calc = sum(fibonacci[max(0, len(fibonacci)-k):])
        fibonacci.append(calc)
        if calc == N:
            ans = k
            found = True
            break
    #print('k', k, fibonacci)
print(ans)



0