結果

問題 No.113 宝探し
ユーザー regeregeregerege
提出日時 2016-06-07 02:33:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 12,088 ms
コンパイル使用メモリ 185,484 KB
実行使用メモリ 34,908 KB
最終ジャッジ日時 2024-11-16 21:15:37
合計ジャッジ時間 21,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
34,784 KB
testcase_01 AC 299 ms
34,644 KB
testcase_02 AC 292 ms
34,656 KB
testcase_03 AC 296 ms
34,712 KB
testcase_04 AC 293 ms
34,644 KB
testcase_05 AC 305 ms
34,512 KB
testcase_06 AC 303 ms
34,656 KB
testcase_07 AC 298 ms
34,584 KB
testcase_08 AC 298 ms
34,644 KB
testcase_09 AC 307 ms
34,784 KB
testcase_10 AC 296 ms
34,592 KB
testcase_11 AC 303 ms
34,840 KB
testcase_12 AC 304 ms
34,640 KB
testcase_13 AC 304 ms
33,908 KB
testcase_14 AC 291 ms
34,772 KB
testcase_15 AC 293 ms
34,528 KB
testcase_16 AC 302 ms
34,896 KB
testcase_17 AC 299 ms
34,708 KB
testcase_18 AC 297 ms
34,520 KB
testcase_19 AC 294 ms
34,908 KB
testcase_20 AC 301 ms
34,784 KB
testcase_21 AC 296 ms
34,656 KB
testcase_22 AC 296 ms
34,720 KB
testcase_23 AC 317 ms
34,652 KB
testcase_24 AC 307 ms
34,660 KB
testcase_25 AC 301 ms
34,860 KB
testcase_26 AC 311 ms
33,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (234 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 (x,y) = function
    | 'N' -> x,y+1.
    | 'E' -> x+1.,y
    | 'W' -> x-1.,y
    | 'S' -> x,y-1.
    | _ -> failwith "error!"
let x,y =
    stdin.ReadLine()
    |> Seq.fold f (0.,0.)
let s = sqrt((x*x)+(y*y))
printfn "%2.5f" s
0