結果

問題 No.1139 Slime Race
ユーザー eSeFeSeF
提出日時 2020-07-31 16:26:33
言語 F#
(F# 4.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 14,646 ms
コンパイル使用メモリ 197,056 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-07-02 08:11:11
合計ジャッジ時間 24,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
34,744 KB
testcase_01 AC 332 ms
34,900 KB
testcase_02 AC 323 ms
34,644 KB
testcase_03 AC 328 ms
34,004 KB
testcase_04 AC 323 ms
33,828 KB
testcase_05 AC 326 ms
33,868 KB
testcase_06 AC 326 ms
34,624 KB
testcase_07 AC 323 ms
34,772 KB
testcase_08 AC 323 ms
34,644 KB
testcase_09 AC 333 ms
34,000 KB
testcase_10 AC 358 ms
52,352 KB
testcase_11 AC 360 ms
51,840 KB
testcase_12 AC 359 ms
54,656 KB
testcase_13 AC 317 ms
34,896 KB
testcase_14 AC 358 ms
52,224 KB
testcase_15 AC 368 ms
51,968 KB
testcase_16 AC 368 ms
53,888 KB
testcase_17 AC 371 ms
52,864 KB
testcase_18 AC 362 ms
49,792 KB
testcase_19 AC 354 ms
45,788 KB
testcase_20 AC 354 ms
44,544 KB
testcase_21 AC 358 ms
49,792 KB
testcase_22 AC 361 ms
52,480 KB
testcase_23 AC 374 ms
54,912 KB
testcase_24 AC 326 ms
34,644 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (375 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 #

open System
let R T = stdin.ReadLine()|> T
let RS T = stdin.ReadLine().Split()|>Array.map T
let R2 T U = RS string|>fun c-> (c.[0]|>T),(c.[1]|>U)
let R3 T U V = RS string|>fun c-> (c.[0]|>T),(c.[1]|>U),(c.[2]|>V)
let R4 T U V W = RS string|>fun c-> (c.[0]|>T),(c.[1]|>U),(c.[2]|>V),(c.[3]|>W)
let R5 T U V W X = RS string|>fun c-> (c.[0]|>T),(c.[1]|>U),(c.[2]|>V),(c.[3]|>W),(c.[4]|>X)
[<EntryPoint>]
let main argv =
    let N,D=R2 int int64
    let _ = RS int
    RS int64
    |>Array.sum
    |>fun c -> ((D+c-1L)/c)
    |>printfn "%d"
    0
0