結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 41 ms
52,852 KB
testcase_02 AC 39 ms
53,844 KB
testcase_03 AC 38 ms
52,180 KB
testcase_04 AC 38 ms
52,556 KB
testcase_05 AC 40 ms
52,240 KB
testcase_06 AC 38 ms
51,880 KB
testcase_07 AC 38 ms
52,680 KB
testcase_08 AC 37 ms
52,364 KB
testcase_09 AC 37 ms
52,404 KB
testcase_10 AC 38 ms
52,212 KB
testcase_11 AC 38 ms
51,828 KB
testcase_12 AC 43 ms
53,280 KB
testcase_13 AC 39 ms
53,804 KB
testcase_14 AC 39 ms
53,540 KB
testcase_15 AC 39 ms
53,376 KB
testcase_16 AC 39 ms
52,828 KB
testcase_17 AC 38 ms
52,888 KB
testcase_18 AC 37 ms
52,744 KB
testcase_19 AC 38 ms
52,272 KB
testcase_20 AC 38 ms
53,704 KB
testcase_21 AC 38 ms
52,960 KB
testcase_22 AC 37 ms
53,076 KB
testcase_23 AC 38 ms
52,964 KB
testcase_24 AC 38 ms
52,688 KB
testcase_25 AC 38 ms
52,632 KB
testcase_26 AC 39 ms
52,688 KB
testcase_27 AC 38 ms
52,676 KB
testcase_28 AC 38 ms
52,900 KB
testcase_29 AC 38 ms
53,028 KB
testcase_30 AC 38 ms
52,700 KB
testcase_31 AC 39 ms
53,140 KB
testcase_32 AC 39 ms
53,664 KB
testcase_33 AC 39 ms
53,664 KB
testcase_34 AC 43 ms
52,476 KB
testcase_35 AC 38 ms
52,416 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