結果

問題 No.773 コンテスト
ユーザー chikepluschikeplus
提出日時 2019-01-24 17:40:03
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 6,525 ms
コンパイル使用メモリ 194,020 KB
実行使用メモリ 35,188 KB
最終ジャッジ日時 2024-09-16 04:39:27
合計ジャッジ時間 15,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
34,928 KB
testcase_01 AC 329 ms
34,928 KB
testcase_02 AC 318 ms
34,808 KB
testcase_03 WA -
testcase_04 AC 335 ms
34,508 KB
testcase_05 AC 324 ms
34,932 KB
testcase_06 AC 325 ms
34,804 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 316 ms
34,660 KB
testcase_12 WA -
testcase_13 AC 333 ms
34,936 KB
testcase_14 AC 321 ms
34,432 KB
testcase_15 WA -
testcase_16 AC 326 ms
34,936 KB
testcase_17 WA -
testcase_18 AC 335 ms
35,056 KB
testcase_19 AC 339 ms
34,932 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 328 ms
34,684 KB
testcase_23 AC 332 ms
34,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (213 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 = [24..26]
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