結果

問題 No.954 Result
ユーザー caleicalei
提出日時 2020-01-03 21:57:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 722 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-22 19:36:35
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 27 ms
10,624 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 26 ms
10,624 KB
testcase_35 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2020/01/03

a=[int(input()) for _ in range(5)]
# res=[]
# for i in range(4):
#     if a[i]<=a[i+1]:
#         if (a[i]==0 
#         or (res.count(1)>1 and a[i]==1) 
#         or a[i]!=1 and a[i] in res):
#             break
#         else:
#             res.append(a[i])
#     else:
#         res.append(a[i])
#         break
# else:res.append(a[-1])

fib=[0,1]
num=0
while num<=max(a):
    num=fib[-1]+fib[-2]
    fib.append(num)
if a[-1]==1 and a[-2]!=1:
    bgn=2
    cnt=1
    a.pop()
else:
    bgn=1
    cnt=0

e=a.pop()
flag=False
for i in range(bgn,len(fib)):
    if flag:
        if fib[i]!=e:break
    else:
        if e!=fib[i]:continue
        flag=True
    cnt+=1
    if not a:break
    e=a.pop()
print(cnt)
0