結果

問題 No.954 Result
ユーザー yansi819yansi819
提出日時 2024-05-11 17:40:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 81,592 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-12-20 08:39:53
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,620 KB
testcase_01 AC 40 ms
53,096 KB
testcase_02 AC 40 ms
52,364 KB
testcase_03 AC 39 ms
53,812 KB
testcase_04 AC 38 ms
52,068 KB
testcase_05 AC 40 ms
52,564 KB
testcase_06 AC 40 ms
52,212 KB
testcase_07 AC 40 ms
52,616 KB
testcase_08 AC 40 ms
52,268 KB
testcase_09 AC 39 ms
52,308 KB
testcase_10 AC 43 ms
52,060 KB
testcase_11 AC 41 ms
52,516 KB
testcase_12 AC 40 ms
53,804 KB
testcase_13 AC 38 ms
53,144 KB
testcase_14 AC 39 ms
53,416 KB
testcase_15 AC 40 ms
53,280 KB
testcase_16 AC 40 ms
53,084 KB
testcase_17 AC 40 ms
52,564 KB
testcase_18 AC 39 ms
52,872 KB
testcase_19 AC 40 ms
52,972 KB
testcase_20 AC 41 ms
52,612 KB
testcase_21 AC 40 ms
53,504 KB
testcase_22 AC 40 ms
52,428 KB
testcase_23 AC 40 ms
53,696 KB
testcase_24 AC 40 ms
53,288 KB
testcase_25 AC 40 ms
52,976 KB
testcase_26 AC 40 ms
52,568 KB
testcase_27 AC 40 ms
52,332 KB
testcase_28 AC 41 ms
52,312 KB
testcase_29 AC 39 ms
53,480 KB
testcase_30 AC 39 ms
53,280 KB
testcase_31 AC 40 ms
51,620 KB
testcase_32 AC 39 ms
53,504 KB
testcase_33 AC 39 ms
52,124 KB
testcase_34 AC 39 ms
53,588 KB
testcase_35 AC 40 ms
53,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [0] * 5
for i in range(5):
    a[i] = int(input())

Fib = [-1, 1, 1]
while Fib[-1] <= 10 ** 15:
    Fib.append(Fib[-1] + Fib[-2])

cnt = 0
if a[4] in Fib:
    pos = Fib.index(a[4])
    cnt += 1
    v = [a[4]]
    for i in range(3, -1, -1):
        v.append(a[i])
        #print(v, Fib[pos:pos + cnt + 1])
        if v == Fib[pos:pos + cnt + 1]:
            cnt += 1
        else:
            if i == 3 and a[4] == 1:
                pos += 1
                #print(v, Fib[pos:pos + cnt + 1])
                if v == Fib[pos:pos + cnt + 1]:
                    cnt += 1
                    continue
            break
print(cnt)
0