結果

問題 No.954 Result
ユーザー roarisroaris
提出日時 2019-12-17 10:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-07-04 12:36:19
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 7
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [int(input()) for _ in range(5)]
a = a[::-1]
dp = [0]*100
dp[0] = 1
dp[1] = 1

for i in range(2, 100):
    dp[i] = dp[i-1]+dp[i-2]
    
ans = 0

for i in range(100):
    if dp[i]==a[0]:
        c = 1
        
        while c<5 and dp[i+c]==a[c]:
            c += 1
        
        ans = max(ans, c)

print(ans)
0