結果

問題 No.320 眠れない夜に
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-16 05:37:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 58,816 KB
最終ジャッジ日時 2024-06-24 00:52:47
合計ジャッジ時間 2,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,776 KB
testcase_01 AC 41 ms
58,740 KB
testcase_02 AC 40 ms
58,816 KB
testcase_03 AC 40 ms
58,152 KB
testcase_04 AC 37 ms
52,304 KB
testcase_05 AC 37 ms
53,044 KB
testcase_06 AC 38 ms
52,272 KB
testcase_07 AC 38 ms
52,884 KB
testcase_08 AC 37 ms
53,400 KB
testcase_09 AC 37 ms
53,812 KB
testcase_10 AC 38 ms
52,668 KB
testcase_11 AC 41 ms
58,236 KB
testcase_12 AC 37 ms
52,984 KB
testcase_13 AC 36 ms
52,796 KB
testcase_14 AC 38 ms
52,876 KB
testcase_15 AC 38 ms
52,748 KB
testcase_16 AC 38 ms
52,336 KB
testcase_17 AC 37 ms
52,532 KB
testcase_18 AC 36 ms
52,200 KB
testcase_19 AC 37 ms
53,136 KB
testcase_20 AC 38 ms
53,048 KB
testcase_21 AC 37 ms
52,492 KB
testcase_22 AC 38 ms
53,256 KB
testcase_23 WA -
testcase_24 AC 37 ms
51,884 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 37 ms
53,044 KB
testcase_29 AC 36 ms
53,444 KB
testcase_30 AC 37 ms
52,796 KB
testcase_31 AC 37 ms
52,872 KB
testcase_32 AC 36 ms
52,344 KB
testcase_33 AC 37 ms
52,964 KB
testcase_34 AC 37 ms
53,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

diff = 0
mem = [-1]*(N+1)
mem[1]=1
mem[2]=1
def f(n):
    if mem[n]!=-1:
        return mem[n]
    
    mem[n] = f(n-1)+f(n-2)
    return mem[n]

diff = f(N)-M
if diff<0:
    print(-1)
    exit()

ans = 0
called = [False]*(N+1)
while diff>0:
    
    now = 1
    while f(now) <= diff:
        now += 1
    
    now -= 1
    while called[now]:
        now -= 1
    now = min(now,78)
    called[now]=True
    ans += 1
    diff -= f(now)
print(ans)
    
    
0