結果

問題 No.182 新規性の虜
ユーザー natoriusannatoriusan
提出日時 2023-07-30 10:50:36
言語 F#
(F# 4.0)
結果
AC  
実行時間 375 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 8,192 ms
コンパイル使用メモリ 191,832 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-10-09 06:15:58
合計ジャッジ時間 20,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
34,724 KB
testcase_01 AC 344 ms
34,860 KB
testcase_02 AC 338 ms
35,400 KB
testcase_03 AC 342 ms
34,852 KB
testcase_04 AC 344 ms
34,728 KB
testcase_05 AC 337 ms
34,856 KB
testcase_06 AC 343 ms
34,596 KB
testcase_07 AC 344 ms
34,736 KB
testcase_08 AC 365 ms
43,264 KB
testcase_09 AC 373 ms
48,000 KB
testcase_10 AC 375 ms
46,976 KB
testcase_11 AC 370 ms
45,420 KB
testcase_12 AC 358 ms
38,992 KB
testcase_13 AC 344 ms
34,736 KB
testcase_14 AC 345 ms
35,432 KB
testcase_15 AC 337 ms
34,644 KB
testcase_16 AC 341 ms
34,724 KB
testcase_17 AC 360 ms
35,568 KB
testcase_18 AC 370 ms
44,160 KB
testcase_19 AC 362 ms
39,856 KB
testcase_20 AC 355 ms
38,680 KB
testcase_21 AC 371 ms
44,544 KB
testcase_22 AC 362 ms
39,412 KB
testcase_23 AC 336 ms
34,232 KB
testcase_24 AC 365 ms
47,360 KB
testcase_25 AC 368 ms
44,664 KB
testcase_26 AC 349 ms
37,192 KB
testcase_27 AC 339 ms
34,580 KB
evil01.txt AC 374 ms
49,408 KB
evil02.txt AC 370 ms
49,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (250 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 #

let n = stdin.ReadLine () |> int
let a = stdin.ReadLine().Split " " |> Array.map int |> Array.sort


[|
    for i in 0..a.Length-1 ->
        if a.Length = 1 then
            true
        elif i = 0 then
            a.[i] <> a.[i+1]
        elif i = a.Length-1 then
            a.[i] <> a.[i-1]
        else
            a.[i] <> a.[i-1] && a.[i] <> a.[i+1]
|] |> Array.filter id |> Array.length |> printfn "%d"
0