結果

問題 No.320 眠れない夜に
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-16 05:26:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 59,804 KB
最終ジャッジ日時 2024-06-24 00:44:25
合計ジャッジ時間 2,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,668 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 41 ms
58,340 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,348 KB
testcase_06 AC 39 ms
53,284 KB
testcase_07 AC 38 ms
53,200 KB
testcase_08 AC 38 ms
52,440 KB
testcase_09 AC 38 ms
53,976 KB
testcase_10 AC 38 ms
53,632 KB
testcase_11 AC 41 ms
58,860 KB
testcase_12 AC 38 ms
53,288 KB
testcase_13 AC 38 ms
52,556 KB
testcase_14 AC 38 ms
53,208 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
52,340 KB
testcase_19 AC 37 ms
53,220 KB
testcase_20 AC 37 ms
52,888 KB
testcase_21 AC 38 ms
53,024 KB
testcase_22 AC 38 ms
52,636 KB
testcase_23 WA -
testcase_24 AC 38 ms
52,476 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 38 ms
53,892 KB
testcase_29 AC 37 ms
53,664 KB
testcase_30 WA -
testcase_31 AC 38 ms
52,148 KB
testcase_32 AC 37 ms
52,492 KB
testcase_33 AC 39 ms
53,000 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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

ans = 0
while diff>0:
    
    now = 1
    while f(now) <= diff:
        now += 1
    
    now -= 1
    ans += 1
    diff -= f(now)
print(ans)
    
    
0