結果

問題 No.773 コンテスト
ユーザー chikepluschikeplus
提出日時 2019-01-24 17:41:57
言語 F#
(F# 4.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 15,756 ms
コンパイル使用メモリ 185,724 KB
実行使用メモリ 35,068 KB
最終ジャッジ日時 2024-07-06 11:31:02
合計ジャッジ時間 25,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
34,800 KB
testcase_01 AC 284 ms
34,660 KB
testcase_02 AC 284 ms
34,936 KB
testcase_03 AC 283 ms
34,256 KB
testcase_04 AC 285 ms
34,780 KB
testcase_05 AC 287 ms
34,100 KB
testcase_06 AC 284 ms
34,380 KB
testcase_07 AC 284 ms
34,252 KB
testcase_08 AC 285 ms
34,668 KB
testcase_09 AC 289 ms
34,384 KB
testcase_10 AC 284 ms
34,800 KB
testcase_11 AC 289 ms
34,936 KB
testcase_12 AC 291 ms
34,804 KB
testcase_13 AC 287 ms
35,056 KB
testcase_14 AC 284 ms
34,936 KB
testcase_15 AC 288 ms
34,932 KB
testcase_16 AC 288 ms
34,780 KB
testcase_17 AC 295 ms
35,068 KB
testcase_18 AC 285 ms
34,672 KB
testcase_19 AC 287 ms
34,348 KB
testcase_20 AC 287 ms
34,632 KB
testcase_21 AC 285 ms
34,932 KB
testcase_22 AC 286 ms
34,100 KB
testcase_23 AC 285 ms
34,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (323 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 inputs = System.Console.ReadLine().Split(' ')
let args = [for str in inputs do yield int(str) ]

let rec contains f lt =
  match lt with
  | [] -> false
  | x::xs -> if f x  then  true else contains f xs

let rec filter f lt =
  match lt with
  | [] -> []
  | x::xs -> if f x then  [x] @ (filter f xs) else filter f xs


let contests = [23..25]
let dups = filter (fun  x -> contains (fun y -> y = x ) contests ) [ (List.head args) .. (List.item 1 args) ]

printfn "%i" (contests.Length - dups.Length)
0