結果

問題 No.1053 ゲーミング棒
ユーザー ikdikd
提出日時 2020-05-15 23:10:50
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 952 bytes
コンパイル時間 14,691 ms
コンパイル使用メモリ 197,528 KB
実行使用メモリ 78,584 KB
最終ジャッジ日時 2024-09-19 13:14:31
合計ジャッジ時間 21,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
34,884 KB
testcase_01 AC 63 ms
30,692 KB
testcase_02 AC 318 ms
34,896 KB
testcase_03 AC 316 ms
34,880 KB
testcase_04 AC 320 ms
34,628 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 322 ms
34,892 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 318 ms
34,764 KB
testcase_12 AC 320 ms
34,884 KB
testcase_13 WA -
testcase_14 AC 65 ms
30,820 KB
testcase_15 AC 322 ms
34,740 KB
testcase_16 AC 63 ms
30,592 KB
testcase_17 AC 316 ms
35,144 KB
testcase_18 AC 325 ms
34,876 KB
testcase_19 WA -
testcase_20 AC 61 ms
30,692 KB
testcase_21 AC 62 ms
30,848 KB
testcase_22 AC 317 ms
34,760 KB
testcase_23 AC 85 ms
44,672 KB
testcase_24 AC 92 ms
44,544 KB
testcase_25 AC 554 ms
78,584 KB
testcase_26 AC 564 ms
77,924 KB
testcase_27 WA -
testcase_28 AC 66 ms
30,464 KB
testcase_29 AC 65 ms
30,464 KB
testcase_30 WA -
testcase_31 AC 384 ms
47,476 KB
testcase_32 AC 354 ms
47,340 KB
testcase_33 AC 352 ms
47,600 KB
testcase_34 AC 358 ms
47,584 KB
testcase_35 AC 342 ms
50,048 KB
testcase_36 AC 348 ms
50,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (320 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let n = stdin.ReadLine() |> int

    let a =
        stdin.ReadLine().Split()
        |> Array.map (fun x -> int (x) - 1)
        |> Array.toList

    let mutable freq = Array.create n 0
    for x in a do
        freq.[x] <- freq.[x] + 1
    if freq |> Array.forall (fun v -> v <= 1) then
        printfn "0"
        exit 0
    let x = freq |> Array.findIndex (fun v -> v >= 2)
    let b =
        List.append (a |> List.skipWhile (fun y -> y = x))
            (a |> List.takeWhile (fun y -> y = x))

    let rec ok (c: List<int>) (seen: Set<int>) =
        if c.IsEmpty then
            true
        else
            let x = c.Head
            if seen.Contains x
            then false
            else ok (c |> List.skipWhile (fun y -> y = x)) (seen.Add x)
    printfn "%d" (if (ok b (new Set<int>([]))) then 1 else -1)
    0 // return an integer exit code
0