結果
問題 | No.1053 ゲーミング棒 |
ユーザー | ikd |
提出日時 | 2020-05-15 23:27:19 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 786 ms / 2,000 ms |
コード長 | 961 bytes |
コンパイル時間 | 8,635 ms |
コンパイル使用メモリ | 186,932 KB |
実行使用メモリ | 82,156 KB |
最終ジャッジ日時 | 2024-09-19 13:41:33 |
合計ジャッジ時間 | 19,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
35,060 KB |
testcase_01 | AC | 70 ms
30,964 KB |
testcase_02 | AC | 342 ms
34,680 KB |
testcase_03 | AC | 342 ms
34,792 KB |
testcase_04 | AC | 341 ms
35,056 KB |
testcase_05 | AC | 70 ms
30,848 KB |
testcase_06 | AC | 70 ms
31,104 KB |
testcase_07 | AC | 68 ms
30,844 KB |
testcase_08 | AC | 343 ms
34,800 KB |
testcase_09 | AC | 70 ms
30,952 KB |
testcase_10 | AC | 70 ms
30,720 KB |
testcase_11 | AC | 343 ms
34,924 KB |
testcase_12 | AC | 344 ms
34,672 KB |
testcase_13 | AC | 69 ms
30,848 KB |
testcase_14 | AC | 70 ms
30,848 KB |
testcase_15 | AC | 341 ms
35,052 KB |
testcase_16 | AC | 70 ms
30,592 KB |
testcase_17 | AC | 340 ms
34,932 KB |
testcase_18 | AC | 340 ms
34,924 KB |
testcase_19 | AC | 70 ms
30,848 KB |
testcase_20 | AC | 70 ms
30,952 KB |
testcase_21 | AC | 70 ms
30,964 KB |
testcase_22 | AC | 344 ms
34,804 KB |
testcase_23 | AC | 267 ms
73,336 KB |
testcase_24 | AC | 319 ms
73,568 KB |
testcase_25 | AC | 786 ms
82,156 KB |
testcase_26 | AC | 781 ms
81,888 KB |
testcase_27 | AC | 69 ms
30,964 KB |
testcase_28 | AC | 68 ms
31,104 KB |
testcase_29 | AC | 69 ms
30,848 KB |
testcase_30 | AC | 90 ms
40,192 KB |
testcase_31 | AC | 373 ms
47,648 KB |
testcase_32 | AC | 372 ms
47,780 KB |
testcase_33 | AC | 374 ms
47,408 KB |
testcase_34 | AC | 373 ms
47,784 KB |
testcase_35 | AC | 371 ms
50,176 KB |
testcase_36 | AC | 372 ms
50,304 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (243 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/
ソースコード
// Learn more about F# at http://fsharp.org open System let rec ok (a: List<int>) (seen: Set<int>) = match a |> List.tryHead with | None -> true | Some(x) -> if seen.Contains x then false else ok (a |> 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 match freq |> Array.tryFindIndex (fun v -> v >= 2) with | None -> printfn "0" | Some(x) -> let b = (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