結果

問題 No.320 眠れない夜に
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:50:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-07-17 06:04:13
合計ジャッジ時間 2,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,284 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 37 ms
52,196 KB
testcase_04 AC 37 ms
52,244 KB
testcase_05 AC 36 ms
52,272 KB
testcase_06 AC 36 ms
51,984 KB
testcase_07 AC 37 ms
52,424 KB
testcase_08 AC 36 ms
53,160 KB
testcase_09 AC 36 ms
53,056 KB
testcase_10 AC 37 ms
52,392 KB
testcase_11 AC 36 ms
52,428 KB
testcase_12 AC 36 ms
52,160 KB
testcase_13 AC 36 ms
52,816 KB
testcase_14 AC 36 ms
52,276 KB
testcase_15 AC 36 ms
52,692 KB
testcase_16 AC 36 ms
52,824 KB
testcase_17 AC 36 ms
52,268 KB
testcase_18 AC 36 ms
52,072 KB
testcase_19 AC 36 ms
53,560 KB
testcase_20 AC 36 ms
51,996 KB
testcase_21 AC 36 ms
52,476 KB
testcase_22 AC 36 ms
52,464 KB
testcase_23 WA -
testcase_24 AC 37 ms
53,072 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 37 ms
52,208 KB
testcase_29 AC 37 ms
53,188 KB
testcase_30 AC 36 ms
52,084 KB
testcase_31 AC 36 ms
53,132 KB
testcase_32 AC 35 ms
52,000 KB
testcase_33 AC 36 ms
52,572 KB
testcase_34 AC 36 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = [1, 1]
for _ in range(n - 2):
    A.append(A[-1] + A[-2])

d = A[-1] - m
ans = 0
for a in A[::-1]:
    if d >= a:
        d -= a
        ans += 1
if d != 0:
    ans = -1
print(ans)
0