結果

問題 No.954 Result
ユーザー tcltktcltk
提出日時 2021-01-16 09:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,144 KB
最終ジャッジ日時 2024-05-05 12:12:28
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
88,948 KB
testcase_01 AC 142 ms
88,960 KB
testcase_02 AC 147 ms
88,532 KB
testcase_03 AC 154 ms
88,936 KB
testcase_04 AC 143 ms
88,960 KB
testcase_05 AC 142 ms
88,916 KB
testcase_06 AC 140 ms
88,960 KB
testcase_07 AC 143 ms
89,028 KB
testcase_08 AC 140 ms
88,936 KB
testcase_09 AC 144 ms
89,024 KB
testcase_10 AC 142 ms
88,704 KB
testcase_11 AC 142 ms
88,924 KB
testcase_12 AC 143 ms
88,816 KB
testcase_13 AC 142 ms
88,704 KB
testcase_14 AC 142 ms
88,992 KB
testcase_15 AC 146 ms
89,036 KB
testcase_16 AC 143 ms
88,960 KB
testcase_17 AC 144 ms
88,960 KB
testcase_18 AC 143 ms
88,960 KB
testcase_19 AC 143 ms
89,020 KB
testcase_20 AC 143 ms
88,704 KB
testcase_21 AC 145 ms
89,144 KB
testcase_22 AC 143 ms
89,056 KB
testcase_23 AC 147 ms
88,960 KB
testcase_24 AC 144 ms
88,580 KB
testcase_25 AC 143 ms
88,900 KB
testcase_26 AC 142 ms
88,704 KB
testcase_27 AC 142 ms
88,948 KB
testcase_28 AC 146 ms
88,920 KB
testcase_29 AC 145 ms
89,060 KB
testcase_30 AC 142 ms
88,948 KB
testcase_31 AC 147 ms
88,908 KB
testcase_32 AC 144 ms
88,644 KB
testcase_33 AC 142 ms
88,648 KB
testcase_34 AC 145 ms
88,960 KB
testcase_35 AC 144 ms
88,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """233
# 144
# 89
# 55
# 34
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    a = list(reversed([int(input()) for _ in range(5)]))

    F = [1, 1, 2, 3, 5, 8]
    if a[0] == 1:
        n1 = 5
        for i in range(5):
            if a[i] != F[i]:
                n1 = i
                break
        n2 = 5
        for i in range(5):
            if a[i] != F[1+i]:
                n2 = i
                break
        print(max(n1, n2))

    else:
        k = 2
        while True:
            while len(F) - 1 < k:
                F.append(F[-2] + F[-1])
            if a[0] == F[k]:
                n = 5
                for i in range(5):
                    while len(F) - 1 < k+i:
                        F.append(F[-2] + F[-1])
                    if a[i] != F[k+i]:
                        n = i
                        break
                print(n)
                break
            elif a[0] < F[k]:
                print(0)
                break
            k += 1

if __name__ == '__main__':
    main()
0