結果

問題 No.954 Result
ユーザー ikdikd
提出日時 2020-06-07 16:12:39
言語 F#
(F# 4.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 9,206 ms
コンパイル使用メモリ 195,136 KB
実行使用メモリ 36,072 KB
最終ジャッジ日時 2024-07-04 12:47:36
合計ジャッジ時間 22,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
35,688 KB
testcase_01 AC 345 ms
35,564 KB
testcase_02 AC 335 ms
35,816 KB
testcase_03 AC 336 ms
36,060 KB
testcase_04 AC 339 ms
35,692 KB
testcase_05 AC 328 ms
35,800 KB
testcase_06 AC 338 ms
35,812 KB
testcase_07 AC 346 ms
35,688 KB
testcase_08 AC 340 ms
35,948 KB
testcase_09 AC 339 ms
35,556 KB
testcase_10 AC 348 ms
35,808 KB
testcase_11 AC 335 ms
35,556 KB
testcase_12 AC 353 ms
35,688 KB
testcase_13 AC 344 ms
35,688 KB
testcase_14 AC 344 ms
35,008 KB
testcase_15 AC 341 ms
35,944 KB
testcase_16 AC 344 ms
35,808 KB
testcase_17 AC 335 ms
35,556 KB
testcase_18 AC 347 ms
35,560 KB
testcase_19 AC 334 ms
36,072 KB
testcase_20 AC 337 ms
35,808 KB
testcase_21 AC 350 ms
36,056 KB
testcase_22 AC 335 ms
35,948 KB
testcase_23 AC 340 ms
35,688 KB
testcase_24 AC 336 ms
36,056 KB
testcase_25 AC 338 ms
36,068 KB
testcase_26 AC 342 ms
35,688 KB
testcase_27 AC 337 ms
35,816 KB
testcase_28 AC 339 ms
35,680 KB
testcase_29 AC 341 ms
35,136 KB
testcase_30 AC 335 ms
35,688 KB
testcase_31 AC 331 ms
35,948 KB
testcase_32 AC 341 ms
35,564 KB
testcase_33 AC 337 ms
35,944 KB
testcase_34 AC 336 ms
35,944 KB
testcase_35 AC 342 ms
35,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (562 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System


[<EntryPoint>]
let main _ =
    let a =
        [|for _ in 1 .. 5 -> stdin.ReadLine() |> int64|]
        |> Array.rev

    let fib =
        (1L,1L)
        |> Seq.unfold(fun (f1,f2) ->
            if f1 > 1000000000000000L then None else Some(f1,(f2,f1 + f2)))
        |> Seq.toArray

    let ans =
        [for n in 1 .. 5 -> n]
        |> List.filter(fun n ->
            let b = a |> Array.take n
            [for i in 0 .. fib.Length - n -> Array.sub fib i n]
            |> List.exists((=) b))

    printfn "%d" <| if ans.Length = 0 then 0 else ans |> List.max
    0
0