結果

問題 No.773 コンテスト
ユーザー taktak
提出日時 2019-02-03 14:44:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 5,429 ms
コンパイル使用メモリ 191,304 KB
実行使用メモリ 35,308 KB
最終ジャッジ日時 2024-07-06 11:34:44
合計ジャッジ時間 13,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
34,656 KB
testcase_01 AC 287 ms
34,920 KB
testcase_02 AC 285 ms
34,796 KB
testcase_03 AC 288 ms
34,928 KB
testcase_04 AC 282 ms
34,664 KB
testcase_05 AC 283 ms
34,800 KB
testcase_06 AC 284 ms
34,668 KB
testcase_07 AC 284 ms
34,796 KB
testcase_08 AC 283 ms
34,672 KB
testcase_09 AC 283 ms
34,664 KB
testcase_10 AC 282 ms
34,920 KB
testcase_11 AC 283 ms
34,540 KB
testcase_12 AC 284 ms
35,308 KB
testcase_13 AC 289 ms
34,796 KB
testcase_14 AC 285 ms
34,796 KB
testcase_15 AC 284 ms
34,800 KB
testcase_16 AC 282 ms
34,788 KB
testcase_17 AC 282 ms
34,540 KB
testcase_18 AC 284 ms
34,800 KB
testcase_19 AC 310 ms
34,928 KB
testcase_20 AC 286 ms
34,668 KB
testcase_21 AC 294 ms
34,788 KB
testcase_22 AC 287 ms
34,668 KB
testcase_23 AC 282 ms
34,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (193 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 f a b =
    let pc = [ 23 .. 25 ]
    let travel = [ a .. b]
    let ng = travel |> List.where(fun x -> List.contains x pc) |> List.length
    3 - ng

let A, B = let t = stdin.ReadLine().Split() |> Array.map int in t.[0], t.[1]

f A B
|> printfn "%i"
0