結果

問題 No.1053 ゲーミング棒
ユーザー ikdikd
提出日時 2020-05-15 23:18:53
言語 F#
(F# 4.0)
結果
AC  
実行時間 867 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 13,650 ms
コンパイル使用メモリ 196,732 KB
実行使用メモリ 83,044 KB
最終ジャッジ日時 2024-09-19 13:28:56
合計ジャッジ時間 18,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
34,784 KB
testcase_01 AC 65 ms
30,964 KB
testcase_02 AC 315 ms
35,036 KB
testcase_03 AC 320 ms
34,920 KB
testcase_04 AC 318 ms
34,912 KB
testcase_05 AC 65 ms
30,948 KB
testcase_06 AC 65 ms
30,848 KB
testcase_07 AC 65 ms
30,976 KB
testcase_08 AC 314 ms
35,032 KB
testcase_09 AC 65 ms
30,976 KB
testcase_10 AC 65 ms
30,708 KB
testcase_11 AC 324 ms
35,036 KB
testcase_12 AC 323 ms
34,784 KB
testcase_13 AC 68 ms
30,848 KB
testcase_14 AC 66 ms
30,720 KB
testcase_15 AC 324 ms
35,032 KB
testcase_16 AC 66 ms
30,976 KB
testcase_17 AC 318 ms
34,784 KB
testcase_18 AC 321 ms
35,040 KB
testcase_19 AC 65 ms
30,964 KB
testcase_20 AC 66 ms
30,720 KB
testcase_21 AC 65 ms
31,104 KB
testcase_22 AC 318 ms
35,044 KB
testcase_23 AC 244 ms
73,856 KB
testcase_24 AC 303 ms
73,588 KB
testcase_25 AC 867 ms
81,896 KB
testcase_26 AC 843 ms
83,044 KB
testcase_27 AC 66 ms
30,944 KB
testcase_28 AC 66 ms
30,848 KB
testcase_29 AC 67 ms
30,720 KB
testcase_30 AC 89 ms
40,192 KB
testcase_31 AC 357 ms
47,524 KB
testcase_32 AC 351 ms
47,404 KB
testcase_33 AC 359 ms
47,400 KB
testcase_34 AC 364 ms
47,660 KB
testcase_35 AC 346 ms
49,920 KB
testcase_36 AC 350 ms
50,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (336 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

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)

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

    let a =
        stdin.ReadLine().Split()
        |> Array.map (fun x -> int (x) - 1)
        |> Array.toList
    
    if (ok a (new Set<int>([]))) then
        printfn "0"
        exit 0

    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))

    printfn "%d" (if (ok b (new Set<int>([]))) then 1 else -1)
    0 // return an integer exit code
0