結果

問題 No.320 眠れない夜に
ユーザー ntudantuda
提出日時 2021-11-13 13:45:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-05-05 11:57:59
合計ジャッジ時間 3,330 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,264 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 32 ms
52,892 KB
testcase_04 AC 34 ms
51,944 KB
testcase_05 AC 35 ms
52,892 KB
testcase_06 AC 33 ms
51,908 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 34 ms
53,364 KB
testcase_09 AC 33 ms
53,288 KB
testcase_10 AC 33 ms
52,488 KB
testcase_11 AC 34 ms
52,372 KB
testcase_12 AC 35 ms
52,296 KB
testcase_13 AC 34 ms
51,828 KB
testcase_14 AC 33 ms
52,152 KB
testcase_15 AC 38 ms
52,232 KB
testcase_16 AC 33 ms
52,480 KB
testcase_17 AC 35 ms
52,304 KB
testcase_18 AC 33 ms
52,396 KB
testcase_19 AC 33 ms
51,936 KB
testcase_20 AC 32 ms
52,260 KB
testcase_21 AC 32 ms
52,448 KB
testcase_22 AC 34 ms
52,536 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,540 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 34 ms
53,964 KB
testcase_29 AC 33 ms
52,760 KB
testcase_30 AC 33 ms
52,680 KB
testcase_31 AC 33 ms
52,636 KB
testcase_32 AC 34 ms
52,608 KB
testcase_33 AC 35 ms
52,552 KB
testcase_34 AC 35 ms
52,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N,M = map(int,input().split())
fib = [0] * N
fib[0] = fib[1] = 1
for i in range(2,N):
    fib[i] = fib[i-1] + fib[i-2]
dif = fib[N-1] - M
if dif < 0:
    print(-1)
    sys.exit()
ans = 0
for i in reversed(range(1,N-1)):
    if dif >= fib[i]:
        dif -= fib[i]
        ans += 1
    if dif == 0:
        break
print(ans)
0